How can I create a COUNTSIF within a specified time period?
the formula I currently have is:
=COUNTIFS([Project Status]:[Project Status], CONTAINS("Started", @cell), [Area/Region]:[Area/Region], ="Canada Johnston")
Now I need to have it pull information for the contract year so between say April 1, 2023 to March 31, 2024. I can not seem to be able to add the correct information.
Thanks
Best Answers
-
Hi @ShawnaK,
You would do something like this (using a column header of "Contract Date" in this example):
=COUNTIFS([Project Status]:[Project Status], CONTAINS("Started", @cell), [Area/Region]:[Area/Region], ="Canada Johnston",[Contract Date]:[Contract Date],AND(@cell>=DATE(2023,4,1),@cell<=DATE(2024,3,31))
If you needed to change the dates, then you would just adjust the numbers in the DATE formulas (first number is year, then month, then day).
Hope this helps, if there are any problems/questions then just post! 🙂
-
Yes, you can use this as range/criteria in a SUMIF(s).
Answers
-
Hi @ShawnaK,
You would do something like this (using a column header of "Contract Date" in this example):
=COUNTIFS([Project Status]:[Project Status], CONTAINS("Started", @cell), [Area/Region]:[Area/Region], ="Canada Johnston",[Contract Date]:[Contract Date],AND(@cell>=DATE(2023,4,1),@cell<=DATE(2024,3,31))
If you needed to change the dates, then you would just adjust the numbers in the DATE formulas (first number is year, then month, then day).
Hope this helps, if there are any problems/questions then just post! 🙂
-
Thank you so very much for your quick answer! I appreciate it.
-
Would the same apply for SUMIFS?
-
Yes, you can use this as range/criteria in a SUMIF(s).
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!