Need help creating a formula
I do a project status report for my team. We currently have status options like: "Not Started" , "Active", "Active + Concerns" and "Complete. I recently made another status option: "Cancelled - Covid19". I make a dashboard for my supervisor that highlight the number of projects that aren't complete due in the next 7 days. This is my formula:
=COUNTIFS({2020 Acme Project List Range 1}, "Project", {2020 Acme Project List Range 2}, <=TODAY(7), {2020 Acme Project List Range 2}, >=TODAY(), {2020 Acme Project List Range 4}, <>"Complete")
How can I create a project form that would tell me the number of Projects due in 7 days that are incomplete while taking out any projects with the Cancelled Covid 19 status?
Answers
-
Try something like this...
=COUNTIFS({2020 Acme Project List Range 1}, "Project", {2020 Acme Project List Range 2}, AND(@cell <= TODAY(7), @cell >=TODAY()), {2020 Acme Project List Range 4}, AND(@cell <> "Complete", @cell <> "Cancelled - Covid19"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!