Complete the formula to combine two conditions using AND.
=AND(A1>10, [1])
The AND function requires both conditions to be true. Here, B1>5 is the correct second condition.
Complete the formula to combine two conditions using OR.
=OR(A2=100, [1])
The OR function returns TRUE if either condition is true. Here, B2=50 is the correct second condition.
Fix the error in the formula combining conditions with AND.
=AND(A3>0 [1] B3<10)
The AND function requires conditions separated by commas. Using a comma is correct syntax.
Fill both blanks to combine conditions checking if A4 is positive and B4 is less than 20.
=AND([1], [2])
The formula checks if A4 is greater than 0 and B4 is less than 20 using AND.
Fill all three blanks to create a formula that returns TRUE if C5 equals 10, or D5 is greater than 5, and E5 is less than 20.
=AND(OR([1], [2]), [3])
The OR function checks if C5 equals 10 or D5 is greater than 5. The AND function then checks if that OR condition is true and if E5 is less than 20.