Convert WeekNum to "Week of XYZ"

To get the Date of Monday of the current week, you can use the following in a Math column:

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

You can then use the result of that in a Template column:

CleanShot 2023-06-02 at 11.30.10@2x

If you want the date of Monday next week, just adjust the Math column as follows:

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