Filter Subform

kirky007

Registered User.
Local time
Today, 08:41
Joined
Aug 22, 2005
Messages
24
How do you filter the subform so that it only returns data regarding the current week ending and no data before this date.

Many thanks,

Andy :confused:
 
Is this what you need?

ThisWeekNextSunday = Date() + (7 - DatePart("w", Date(), 2, 1))
ThisWeekLastMonday = Date() - (DatePart("w", Date(), 2, 1)-1)
 

Users who are viewing this thread

Back
Top Bottom