I am trying to write a formula that checks for 4 criteria;
a. That the result in cell [Transition]38 = "Transition"
b. That cell [NPS %]38 is not blank
c. That cell [BG KPI]38 is not blank
d. That cell [LE CM %]38 is not blank
If all 4 criteria are met, then YES, otherwise NO.
Of the cells referenced above, only [NPS %]38 and [BG KPI]38 are linked from another sheet.
Example:
=IF(Transition38 = "Transition", IF(ISBLANK([NPS %]38), IF(ISBLANK([BG KPI]38), IF(ISBLANK([LE CM %]38), "NO", "YES"))))
Problem:
The cells [NPS %]38) and BG KPI]38) are linked fields but contain no values. I think they are causing the formula above to generate no result (the cell looks empty).
I also tried the following:
=IF(Transition38 = "Transition", IF(ISNUMBER([NPS %]38),IF(ISNUMBER([BG KPI]38), IF(ISNUMBER([LE CM %]38), "YES", "NO")))
This resulted in the same 'blank' result as described above.
However, when I removed the reference to [NPS %]38 (as below), this formula worked. .
=IF(Transition38 = "Transition", IF(ISNUMBER([BG KPI]38), IF(ISNUMBER([LE CM %]38), "YES", "NO")))
Can anyone think of a way to solve for this?
Thanks.
Bill


