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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!