Question : IF/OR formula acting like an IF/AND formula

I can't get either of these IF/OR formulas to work. They both behave as if they were IF/AND formulas. I want them to return the value in AE468 if eityher of the words are present. What am I missing?

Thanks,

John
1:
2:
=IF(OR(ISERROR(FIND("READING",$T468,1)),ISERROR(FIND("LTS",$T468,1))),"",AE468)
=IF(ISERROR(OR(FIND("READING",$T468,1),FIND("LTS",$T468,1))),"",AE468)

Answer : IF/OR formula acting like an IF/AND formula

Try

=IF(COUNT(FIND({"READING","LTS"},$T468)),AE468,"")

That's case sensitive - if you don't want it to be case-sensitive then use SEARCH instead of FIND

regards, barry

Random Solutions  
 
programming4us programming4us