First day of week expression

bluke

Registered User.
Local time
Today, 06:22
Joined
Apr 12, 2006
Messages
33
Does anyone know a query expression that would always return the date of the first day of the week (a Monday) for the week after next?:confused:
 
Try this

MondayNext: date() + (2 -Weekday(Date())) +7
MondayTwoWeeks: date() + (d-Weekday(Date())) + 14

As an alternative, you might want to put the date calculation in a function.

Good Luck
 

Users who are viewing this thread

Back
Top Bottom