COUNTIFS per month
I have the formula below, and need to count items per month
=COUNTIFS({CCS Scheduling sales person}, "RR", {CCS Scheduling Days over}, >1)
any ideas?
Thank you!
Answers
-
Hi @Lazar.A
If I'm understanding you correctly, you have a Date column in your source sheet and you want to filter down your current formula to a specific month.
If so, you can add in another {cross sheet reference} to that Date column, then check if the MONTH in each cell (@cell) of that column is equal to a specific number (ex. 1 for January).
MONTH(@cell) = 1
However, the MONTH function can sometimes error if there's a blank cell in the range, so we can wrap it in an IFERROR, like so:
IFERROR(MONTH(@cell), 0) = 1
Try something like this:
=COUNTIFS({CCS Scheduling sales person}, "RR", {CCS Scheduling Days over}, >1, {Date Column}, IFERROR(MONTH(@cell), 0) = 1)
Then you can swap out the = 1 to other months as needed.
Cheers,
Genevieve
Need more information? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao!👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.2K Get Help
- 455 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!