How do I get this week Monday date?

I would like to get this week Monday’s & Saturday’s date
how do I get with computed?
Thanks :slight_smile:

To get Monday this week:

Now+MOD(8-WEEKDAY(Now),7)-6

To get Saturday this week:

Now+MOD(8-WEEKDAY(Now),7)-1

CleanShot 2023-05-18 at 14.46.29@2x

5 Likes

Thanks a lot @Darren_Murphy

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.