How do one filter on a "month field" ie 12/2013 format when mmddyyyy is not available in a query.
I need to view only the last 6 month records.
Usually i would use this based on dates:
The Date() part is messing me around
Please advise
I need to view only the last 6 month records.
Usually i would use this based on dates:
Code:
>=DateAdd("m",-6,Date())
Please advise
Comment