Formula for every Wednesday
I am looking for a formula to populate a due date column of every Wednesday after a start date
Tags:
Answers
-
weekday() will give you the day of the week you are on currently (1-7) and Wednesday will be day 4. You can do a quick if statement to get the days until the next Wednesday and then add that number of days to your submission date (do not run afoul of month endings and such).
=if(weekday([SubDate]@row)<4, [SubDate]@row + (4-weekday([SubDate]@row)), [SubDate]@row +(11-weekday([SubDate]@row)))
Of course, this will give a due date of the very next day if something is submitted on a Tuesday. If you always want to give a minimum of 4 days you could skip the if() statement and true condition and just go with:
=[SubDate]@row+11-weekday([SubDate]@row)
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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!