How to use IF and OR function together

Joined
Apr 27, 2016
Messages
1
Reaction score
0
Return value "True" if either the number in C3 is greater than 1 or the number in D3 is greater than 500.00
 
Welcome to the forum! This should do what you want:

=IF(OR(C3>0,D3>500),"TRUE","FALSE")
 
Back
Top