SOLVED
Adding Days to skip to Monday
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Deano478
12 - Quasar
01-23-2023
05:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey Folks,
This is probably a common question but I couldn't find a way of doing by looking at past solutions, so essentially I have this data:
And I just want to be able to add days to skip to the Monday of the next week.
As always any help and guidance is much appreciated,
Cheers
Date | TheDayInMonth | Day | IsWeekend |
08/07/2023 | 8 | Saturday | 1 |
14/01/2023 | 14 | Saturday | 1 |
09/09/2023 | 9 | Saturday | 1 |
06/08/2023 | 6 | Sunday | 1 |
Solved! Go to Solution.
3 REPLIES 3
Christina_H
14 - Magnetar
01-23-2023
05:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This formula should shift any date to the following Monday:
DateTimeAdd([Date],8-ToNumber(DateTimeFormat([Date],"%u")),"day")
binuacs
21 - Polaris
01-23-2023
06:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
01-23-2023
07:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Christina_H and @binuacs Cheers for the help guys I was able to use your solutions and adapt them into my WF
