Getting the last 6 months of data ina query

gbanks

Registered User.
Local time
Today, 06:51
Joined
Feb 9, 2000
Messages
161
I have a date field in my query for which I only want to pull the last 6 months of data from the current date. How can I do this? Thanks!
 
Set the criteria to be:

Between DateAdd("m", -6, Date()) And Date()
 

Users who are viewing this thread

Back
Top Bottom