I am trying to determine the number of records I have where the date field is not more than 60 days old, but not less than 30 days old (last month). I use the following to determine how many within the last 30 days:
=DCount("*","tblNewCalls","[Date] >= Date() - 30 "
This is in my Control Source for a field on my form.
How can I determine how many records I entered between 30 and 60 days ago?
=DCount("*","tblNewCalls","[Date] >= Date() - 30 "
This is in my Control Source for a field on my form.
How can I determine how many records I entered between 30 and 60 days ago?