Create metrics using a Date Range
Hello - I am trying to build metrics that show how many projects are created with specific quarters based off a Date completed column. Currently using this formula but it is not working:
=COUNTIFS({Project List Range 1}, "Closed", {Project List Range 3}, >=DATE(2020, 1, 1) <= DATE(2020, 3, 31))
Any helpful tips would be appreciated. The 1st argument is pulling data from a status column. When the project moves to closed, want to calculate how many projects closed within quarter 1, quarter 2, etc.
Thanks in advance
Best Answer
-
Try this slight adjustment...
=COUNTIFS({Project List Range 1}, "Closed", {Project List Range 3}, AND(@cell >= DATE(2020, 1, 1), @cell <= DATE(2020, 3, 31)))
Answers
-
Try this slight adjustment...
=COUNTIFS({Project List Range 1}, "Closed", {Project List Range 3}, AND(@cell >= DATE(2020, 1, 1), @cell <= DATE(2020, 3, 31)))
-
Thanks Paul that did the trick. Really appreciate the assistance.
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.7K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!