Build Query for records from the last 30 days

jsquyre

New member
Local time
Today, 12:12
Joined
Dec 30, 2010
Messages
2
I have a table that I need to pull only the records from the past 30 days. I have a date field that I want to use but I'm having problems coming up with the correct expression for the criteria to bring up only those records that are 30 days old or less. Can someone help?
 
Welcome to the forum.

Try using ;
Code:
>= Date() - 30
as your criteria
 
Thanks a bunch! That did the trick.:)
 

Users who are viewing this thread

Back
Top Bottom