You can find numerous threads on handling dates by using the Advanced Search button. That's often more effective than posting, getting an answer, clarifying the original question, etc. For example, are you looking for records dated between a month ago and today, or can your records be dated into the future and you're looking for records up to a month ago AND up to a month in the future?
Couple of things to try...
If you're looking for records from a month ago through today:
WHERE [DateField] >= DateAdd("m", -1, Date())
If your records can be future dated, etc:
WHERE [DateField] BETWEEN DateAdd("m", -1, Date()) AND DateAdd("m", 1, Date())
HTH,
Bob
![[morning] [morning] [morning]](/data/assets/smilies/morning.gif)