Hello, I combined the separate sheets i had for each which calculate the # of cases into a single one because it seems to easier to work with. For each individual condition, I calculate the # or cases per month in any particular year, however for the total # of cases for year the formula seems to calculate the total for all Jan, all Feb etc across all years. I need it to calculate for one particular month. Thank you for your help!
The numbers you see is for all the years not only 2021, and in UPARSEABLE I tried to add Year criteria but it's not working.
for each conditions it works:
=COUNTIFS({Month}, @cell = $[Numerical Value]@row, {Complications}, HAS(@cell, [Readmission within 30 days]$1), {Year}, "2021")
I need to add a year and a month to the total number of cases by month:
=COUNTIFS({Event date}, @cell = $[Numerical Value]@row, {Year}, HAS(@cell, [2021]$1)
or I tried this one too:
=COUNTIFS({Event date}, @cell = $[Numerical Value]@row, {Year}, “2021”)
I have the references defined correctly. Thank you!