Complete the formula to check if either A1 or B1 is TRUE using the OR function.
=OR([1])The OR function takes arguments separated by commas. So =OR(A1, B1) checks if either A1 or B1 is TRUE.
Complete the formula to check if the value in C2 is greater than 10 or less than 5.
=OR(C2 [1] 10, C2 [2] 5)
The formula should check if C2 is greater than 10 or less than 5. The first comparison is C2 > 10 and the second is C2 < 5.
Fix the error in the formula to correctly check if D3 equals 5 or 10 using OR.
=OR(D3=[1], D3=10)
Since D3 contains a number, use the number 5 without quotes. So D3=5 is correct.
Fill both blanks to create a formula that checks if E1 is less than 0 or greater than 100.
=OR(E1 [1] 0, E1 [2] 100)
The formula checks if E1 is less than 0 or greater than 100, so use < and > respectively.
Fill all three blanks to create a formula that checks if F2 is equal to 1, 2, or 3 using OR.
=OR(F2=[1], F2=[2], F2=[3])
The formula checks if F2 equals 1, 2, or 3, so fill blanks with 1, 2, and 3 respectively.