Complete the formula to apply conditional formatting only if the cell value is greater than 100.
=IF(A1 [1] 100, TRUE, FALSE)
The formula checks if the value in cell A1 is greater than 100 to apply the formatting.
Complete the formula to prioritize formatting when the cell value is exactly 50.
=IF(A1 [1] 50, TRUE, FALSE)
The formula checks if the value in A1 is exactly 50 to decide the formatting.
Fix the error in the formula to correctly apply formatting when the value is less than or equal to 20.
=IF(A1 [1] 20, TRUE, FALSE)
The correct operator for 'less than or equal to' is '<=' in Google Sheets formulas.
Fill both blanks to create a formula that applies formatting only if the value is between 10 and 30 inclusive.
=AND(A1 [1] 10, A1 [2] 30)
The formula uses '>= 10' and '<= 30' to check if A1 is between 10 and 30, including both ends.
Fill all three blanks to create a formula that applies formatting if the value is greater than 0, less than 100, and not equal to 50.
=AND(A1 [1] 0, A1 [2] 100, A1 [3] 50)
The formula checks that A1 is greater than 0, less than 100, and not equal to 50 using the operators '>', '<', and '<>' respectively.