
How to get this week's Monday date
Here is the answer to my own question:
Control Source: =DateAdd("y",-Weekday(Now())+2,Now())
Format: m/d
This returns: 1/19
The 2 in the expression above means it will give this week's Monday date. If
you change the 2 to a 3, it will give Tuesday's date.
Doyle60