Adding a one year to a date

  • Thread starter Thread starter Mike
  • Start date Start date
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]))
 
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]))
 

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

Back
Top