I need to count "Yes" from multiple columns and divide it by any cell in those columns which have text. It also needs to be sorted by multiple criteria.
This is the formula I am using but it is giving me a invalid data type error. I don't believe my OR function is being used correct but I'm not sure how to correct it.
This is the formula I have right now:
=IFERROR((COUNTIFS(OR({BWC 1 Cap}, "Yes", {BWC 2 Cap}, "Yes", {BWC 3 Cap}, "Yes", {BWC 4 Cap}, "Yes"), {BWC Div}, C7, {BWC Month}, $A$2, {BWC Year}, $A$3)) / (COUNTIFS(OR({BWC 1 Cap}, ISTEXT(@cell), {BWC 2 Cap}, ISTEXT(@cell), {BWC 3 Cap}, ISTEXT(@cell), {BWC 4 Cap}, ISTEXT(@cell)), {BWC Div}, C7, {BWC Month}, $A$2, {BWC Year}, $A$3)), "")