OR Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to get =OR((F5>0),(E5>0)) to return a value of "1" or text other than TRUE or FALSE

Thank you, RIC
 
=OR((F5>0),(E5>0)) *1 will give 1 or 0
so will =OR(F5>0,E5>0) *1
and =IF(=OR(F5>0,E5>0),"Right", "Wrong") will give other text
Bernard
 
Back
Top