Complete the formula to check if both A1 and B1 are TRUE.
=AND([1])The AND function requires arguments separated by commas. So A1, B1 is correct.
Complete the formula to check if A1 is greater than 10 and B1 is less than 5.
=AND(A1 > [1], B1 < 5)
The condition is A1 greater than 10, so the correct number is 10.
Fix the error in the formula to check if C1 equals 5 and D1 equals 10.
=AND(C1 = 5 [1] D1 = 10)
The AND function arguments must be separated by commas, so , is correct.
Fill both blanks to check if E1 is not empty and F1 is greater than 0.
=AND(E1 [1] "", F1 [2] 0)
To check if E1 is not empty, use <> "". To check if F1 is greater than 0, use > 0.
Fill all three blanks to check if G1 is TRUE, H1 is FALSE, and I1 is greater than or equal to 100.
=AND(G1 = [1], H1 = [2], I1 [3] 100)
The formula checks if G1 is TRUE, H1 is FALSE, and I1 is greater than or equal to 100, so the blanks are TRUE, FALSE, and >=.