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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!