Seeking automation to auto-update Timeline field (today, tmrw, next week) based on current date
I am seeking to have a smartsheet field for Timeline (Today, Tomorrow, This Week, Next Week, This Month, Next Month) to auto-populate based on the current date. I'm making mistakes remembering to shift timelines week-over-week to the appropriate option and it's then throwing off my timelines. Thanks!
Answers
-
Here are the formulas.
Start End Today =TODAY() =TODAY()
Tommorow =TODAY(1) =TODAY(1)
This Week =TODAY(WEEKDAY(TODAY()) - 1) =TODAY(WEEKDAY(TODAY()) - 1)
Next Week =TODAY(WEEKDAY(TODAY()) + 6) =TODAY(WEEKDAY(TODAY()) + 12)
This Month =DATE(YEAR(TODAY()), MONTH(TODAY()), 1) =DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1) - 1
Next Month =DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1) =DATE(YEAR(TODAY()), MONTH(TODAY()) + 2, 1) - 1
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!