Current Date + 3 years

F

fiaola

Hi,

I'm trying to create a Calcuated Field to add three years to today's date.
How do you do that in Access?

Thanks.
 
A

Allen Browne

Type an expression like this into the Field row in query design:
DateAdd("yyyy", 3, Date())
 
Top