What is the correct COUNTIFS/TODAY formula for past and future 90 days?
I am trying to COUNT the tasks assigned to departments in the past/future 90 days. I am using sheet summary fields for this data.
These are the formulas I have come up with but they are not accurate.
=COUNTIFS(Department1:Department72, "fsb", [Start Date]1:[Start Date]72, <=TODAY(-90))
=COUNTIFS(Department1:Department72, "fsb", [Start Date]1:[Start Date]72, <=TODAY(+90))
Where have I gone wrong?
Tags:
Answers
-
Try something like this:
=COUNTIFS(Department:Department, "FSB", [Start Date]:[Start Date], AND(@cell >= TODAY(-90), @cell <= TODAY()))
=COUNTIFS(Department:Department, "FSB", [Start Date]:[Start Date], AND(@cell <= TODAY(90), @cell >= TODAY()))
-
Thank you very much Jake! You rock!
-
Glad it worked.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 219 Industry Talk
- 457 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 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!