Adding a one year to a date

R

Rick Brandt

Mike said:
Does anyone know how you can add a one year to a date using a query ?

NextYear: DateAdd("yyyy", 1,[DateField])

or

NextYear: DateSerial(Year([DateField])+1, Month([DateField]), Day([DateField]))
 
M

Mike

Thank You

Rick Brandt said:
Mike said:
Does anyone know how you can add a one year to a date using a query ?

NextYear: DateAdd("yyyy", 1,[DateField])

or

NextYear: DateSerial(Year([DateField])+1, Month([DateField]), Day([DateField]))
 
Top