I want to count how many cells are blank after they meet the range 1 and range 2 criteria. The formula works without the last part which is count blank cells. When I add the last part to the formula, it gives me #UNPARSEABLE error. What am I doing wrong?
=COUNTIFS({Range1}, "xyz", {Range2}, "abcd", {Range3}, <>"")
=COUNTIFS({Range1}, "xyz", {Range2}, "abcd", {Range3}, ISBLANK@cell)
Thanks