I use this to count the records that have been entered today:
=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:
?DCount("*","tblPeople","[PE_Added]>=" &...