Trying to show the Saturday date of each week, which changes after the date is reached.

Hello! I am trying to show the Saturday date of each week, which should change to the next Saturday after it is reached. Is there a way to do this in one cell with a formula or an automation? Thank you!
Best Answer
-
Hello @Remy V !
You can use this formula to automatically output the next Saturday of the current week.
=TODAY() + 7 - WEEKDAY(TODAY())
You can use this in a pre-existing date column and output the next Saturday after the date listed using:
=[Date Column]@row + 7 - WEEKDAY([Date Column]@row)
School of Sheets (Smartsheet Partner)
If my answer helped please accept and react w/💡Insightful, ⬆️ Vote Up, ❤️Awesome!
Answers
-
Hey @Remy V,
This formula should work in a Date column:
=IF(WEEKDAY(Date@row) = 1, Date@row + 6, IF(WEEKDAY(Date@row) = 2, Date@row + 5, IF(WEEKDAY(Date@row) = 3, Date@row + 4, IF(WEEKDAY(Date@row) = 4, Date@row + 3, IF(WEEKDAY(Date@row) = 5, Date@row + 2, IF(WEEKDAY(Date@row) = 6, Date@row + 1, IF(WEEKDAY(Date@row) = 7, Date@row + 7)))))))
It currently goes to the next Saturday if the Date in the reference cell is a Saturday. If you want it to work for Today's Date, then just replace all the "Date@row"s with TODAY().
Hope this helps!
If my response was helpful in any way (or answered your question) please be sure to upvote it, mark it as awesome, or mark it as the accepted answer!
I'm always looking to connect with other industry professionals, feel free to connect with me on LinkedIn as well!
-
Hello @Remy V !
You can use this formula to automatically output the next Saturday of the current week.
=TODAY() + 7 - WEEKDAY(TODAY())
You can use this in a pre-existing date column and output the next Saturday after the date listed using:
=[Date Column]@row + 7 - WEEKDAY([Date Column]@row)
School of Sheets (Smartsheet Partner)
If my answer helped please accept and react w/💡Insightful, ⬆️ Vote Up, ❤️Awesome!
-
Hello @Remy V,
I made a YouTube video showing how to do this, see below if you're interested.
School of Sheets (Smartsheet Partner)
If my answer helped please accept and react w/💡Insightful, ⬆️ Vote Up, ❤️Awesome!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!