Counting items within a date range
Hi,
I am trying to count the number of requests whose status is closed, and that were initially opened (Request Date) in the month of September 2019 (see extract of the table)
Hereunder is my table:
Here is the formula that I entered, and generates a "#UNPARSEABLE" message:
=COUNTIFS({Report Status}, "Closed", AND(@{Request Date} >= DATE(2019, 9, 1), @{Request Date} <= DATE(2019, 9, 30)))
Thanks for your help.
Manuel
Best Answer
-
Try this:
=COUNTIFS({Report Status}, "Closed", {Request Date}, AND(IFERROR(MONTH(@cell), 0) = 9, IFERROR(YEAR(@cell), 0) = 2019))
Answers
-
Try this:
=COUNTIFS({Report Status}, "Closed", {Request Date}, AND(IFERROR(MONTH(@cell), 0) = 9, IFERROR(YEAR(@cell), 0) = 2019))
-
Hi Paul,
Thank you so much.
I overlooked at the 'IFERROR' and to call in the month and then the year.
Thanks again.
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!