Hi
I am trying to work out a percentage for some KPIs.
I have a sheet I am recording various KPI entries on (see below)
I have a metrics sheet set up so, I can break the KPI results down by month by referencing this sheet.
Taking KPI 1 (in the example shown above), I need a formula that will return a percentage of the number of KPI 1 entries where the KPI 1 helper column shows a 0 for the month of April. I cam currently using the following formula but it's returning a result of 0% when I would expect it to return a result of 50% looking at the total number of KPI 1 entries for the month of April.
=COUNTIFS({03. KPI Register l KPI Category}, 1, {03. KPI Register l Date Recorded}, IFERROR(MONTH(@cell ), 0) = 4) / COUNTIFS({03. KPI Register l KPI1 Helper}, 0, {03. KPI Register l Signed Off Date}, IFERROR(MONTH(@cell ), 0) = 4)
Whats wrong?!
TIA