How can I count a range of dates based of a condition?
Options

Matthew Cooney
โญโญโญ
I'm trying to keep a tally of how many cancelled dates per month for each state/country and I can't quite figure out the formula to make it work. Can someone please help me?
Tags:
Best Answer
-
Try this...
=COUNTIFS({State Column}, @cell = "NZ", {Date Column}, AND(IFERROR(MONTH(@cell), 0) = 6, IFERROR(YEAR(@cell), 0) = 2021))
The above will count for June of 2021. Just adjust the 6 and 2021 as needed to fit the appropriate month and year.
Answers
-
Try this...
=COUNTIFS({State Column}, @cell = "NZ", {Date Column}, AND(IFERROR(MONTH(@cell), 0) = 6, IFERROR(YEAR(@cell), 0) = 2021))
The above will count for June of 2021. Just adjust the 6 and 2021 as needed to fit the appropriate month and year.
-
Hi Paul,
That worked perfectly, thank you very much!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!