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
- 67.2K Get Help
- 452 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!