Where do I put the IFERROR function to correct for year?

I have a column of dates. New rows are being added over time.
I count how many occur in each month.
In a separate metric sheet, have 12 formulas, 1 for each month, that look like this.
=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 1, {Date Column}, MONTH(@cell) = 1) for January
=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 2, {Date Column}, MONTH(@cell) = 2) for February, etc.
However, now that it is a new year, I want to exclude 2023 dates so I think I need to add an IFERROR and a YEAR(TODAY()) function,
Something like IFERROR(YEAR(@cell), 0) = YEAR(TODAY()))
but I am getting #unparseble.
Your insights would be greatly appreciated, my Smartsheet Community friends!
Stay Safe!
Carroll
Best Answer
-
You can simplify the original COUNTIFS by getting rid of the second range/criteria set as it is redundant of the first.
=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 1
, {Date Column}, MONTH(@cell) = 1)=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 1)
Then you can use an AND statement to add the YEAR argument like so:
=COUNTIFS({Date Column}, AND(IFERROR(MONTH(@cell), 0) = 1, IFERROR(YEAR(@cell), 0) = YEAR(TODAY())))
Trying to add exactly what you have in your original post of
IFERROR(YEAR(@cell), 0) = YEAR(TODAY()))
has one too many closing parenthesis at the end.
Answers
-
You can simplify the original COUNTIFS by getting rid of the second range/criteria set as it is redundant of the first.
=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 1
, {Date Column}, MONTH(@cell) = 1)=COUNTIFS({Date Column}, IFERROR(MONTH(@cell), 0) = 1)
Then you can use an AND statement to add the YEAR argument like so:
=COUNTIFS({Date Column}, AND(IFERROR(MONTH(@cell), 0) = 1, IFERROR(YEAR(@cell), 0) = YEAR(TODAY())))
Trying to add exactly what you have in your original post of
IFERROR(YEAR(@cell), 0) = YEAR(TODAY()))
has one too many closing parenthesis at the end.
-
Thanks for the speedy reply, Paul. It worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 504 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!