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.
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!