Can VLOOKUP be used to satisfy one "values_if_True" components of an "If/OR" formula? I'm wondering because I'm trying to use VLOOKUP to work if one or another of two conditions is met. However, the following formula works only if:
CONDITION 1 and CONDITION 2 are met
CONDITION 1 is met and CONDITION 2 is not met
but NOT if
CONDITION 1 is not met but CONDITION 2 is met
=IF(OR(ISTEXT(C46),ISTEXT(B46)),VLOOKUP(B46,$S$6:$W$51,2,FALSE),"")
In other words:
C1 C2 Result
X...X..TRUE
X.......TRUE
.....X..FALSE
But it SHOULD yield a "true" in this last case, but doesn't in this formula.
Clearly, I'm doing something wrong. What am I missing?
Ken
CONDITION 1 and CONDITION 2 are met
CONDITION 1 is met and CONDITION 2 is not met
but NOT if
CONDITION 1 is not met but CONDITION 2 is met
=IF(OR(ISTEXT(C46),ISTEXT(B46)),VLOOKUP(B46,$S$6:$W$51,2,FALSE),"")
In other words:
C1 C2 Result
X...X..TRUE
X.......TRUE
.....X..FALSE
But it SHOULD yield a "true" in this last case, but doesn't in this formula.
Clearly, I'm doing something wrong. What am I missing?
Ken