Calculating Months

  • Thread starter Thread starter Kath via AccessMonster.com
  • Start date Start date
K

Kath via AccessMonster.com

I am working on exporting information from another system. One of the
queries I need to write includes data from 15 months prior to present date.
How do I write this in SQL to only include information no older than 15
months?

Any help would be greatly appreciated. :)
 
No older than 15 months prior to today? The criteria would be >=
DateAdd("m", -15, Date())
 
Back
Top