I am using a SUM function with multiple conditions as an array formula.
One of the tested ranges has blank cells, leading to errors (#REF). I added an error catching function,![]()
=SUM((YEAR(rPapDone)=T6)*(rTests="Colposcopy")* (rResults="LGSIL"))
but this logically always evaluates to 0. How do I deal with blank cells in an array formula? Thanks![]()
=SUM((YEAR(rPapDone)=T6)*(rTests="Colposcopy")*(IFERROR((rResults="Negative"),0)))
Bookmarks