Logical
Returns TRUE if any argument is TRUE. Used to test if at least one condition is met.
=OR(logical1, [logical2], ...)logical1First condition to test
logical2(logical)Additional conditions (optional)
=OR(A1>100, B1>100)TRUE if either value exceeds 100
Result: TRUE or FALSE
=OR(A1="Red", A1="Blue", A1="Green")TRUE if A1 is any of the colors
Result: TRUE or FALSE
=IF(OR(A1="", B1=""), "Missing data", "Complete")Checks if any field is empty
Result: Text result
Our AI can generate tailored formulas based on your specific needs
Generate Custom Formula