Calculated fields

S

Stig

How do I get a field to calculate a date 60 months in advance of another
date field.
I can do it in Excel but not in Access.
Thanks
Dave
 
R

Rick Brandt

Stig said:
How do I get a field to calculate a date 60 months in advance of
another date field.
I can do it in Excel but not in Access.
Thanks
Dave

That's because you don't do calculations in tables. Use a query, form, or
report and put the calculation there.
 
J

John Vinson

How do I get a field to calculate a date 60 months in advance of another
date field.
I can do it in Excel but not in Access.

Use a Query; in a vacant Field cell type

FutureDate: DateAdd("m", 60, [datefield])

and then use this Query as the recordsource for a form or report.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top