Formula to Capture Tasks Starting in the Next 7 Days
Krista Coffman
✭✭✭✭
I need to capture the count of tasks starting in the next 7 days that are marked as Not Started. Currently anytime I change the Status to Not Started my formula grabs it. So the task will be in the past but the formula is still counting it. Below is the formula I have, I can't get my head around it, any help is welcome.
=COUNTIFS({Start Date}, <=TODAY(7), {Deployment Plan WIP Range 1}, "Task", {Status}, "Not Started")
Tags:
Best Answer
-
Try this:
=COUNTIFS({Start Date}, AND(@cell>= TODAY(), @cell<=TODAY(7)), {Deployment Plan WIP Range 1}, "Task", {Status}, "Not Started")
Answers
-
Try this:
=COUNTIFS({Start Date}, AND(@cell>= TODAY(), @cell<=TODAY(7)), {Deployment Plan WIP Range 1}, "Task", {Status}, "Not Started")
-
Thank you Paul!
-
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!