Formula to Count the Number of Tasks that will be due within the next 5 days
Answers
-
Happy to help. 👍️
-
=COUNTIF({Template -Tasks Range 1 - Due Date}, <=TODAY(7)
I have this working, however how do I add Only if Status is not complete?
-
Try this...
=COUNTIFS({Template -Tasks Range 1 - Due Date}, <=TODAY(7), {Other Sheet Status Column}, @cell <> "Complete")
Using the COUNTIFS function (with the "S" on the end) allows you to include additional range/criteria sets.
"<>" means "not equal to".
-
@Paul Newcome - sorry, I know this is an old thread. I'm trying to do something similar to Jessica but I can't get it to work.
=COUNTIFS([Due Date]:[Due Date], AND(@cell >= TODAY(), @cell <= TODAY(+7)), (Status:Status, (@cell <> "Completed")))
I can get the formula to work without the added criteria. So I know that's where the problem lies.
Any help would be great.
-
@SteelRed1 You have some unnecessary parenthesis.
=COUNTIFS([Due Date]:[Due Date], AND(@cell >= TODAY(), @cell <= TODAY(+7)), Status:Status, @cell <> "Completed")
-
Duh! Thank you.
-
@SteelRed1 Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!