I use this to count the records that have been entered today:
Now I want to count the records entered in the current week.
Tried some suggestions I found here and there such as:
Can't get it to work, it keeps giving me errors.
All help will be greatly appreciated.
Catalina
Code:
=DCount("*","tblPeople","PE_Added = #" & Date() & "#")
Now I want to count the records entered in the current week.
Tried some suggestions I found here and there such as:
Code:
?DCount("*","tblPeople","[PE_Added]>=" & Format(DateAdd("d",1-Weekday(Date()),Date()),"#mm\/dd\/yyyy#"))
Can't get it to work, it keeps giving me errors.
All help will be greatly appreciated.
Catalina