Complete the formula to highlight cells greater than 100.
=IF(A1 [1] 100, TRUE, FALSE)
The formula checks if the cell value is greater than 100 to highlight it.
Complete the formula to highlight cells that equal "Done".
=IF(A1 [1] "Done", TRUE, FALSE)
The formula checks if the cell exactly equals the word "Done" to highlight it.
Fix the error in the formula to highlight cells with values less than or equal to 50.
=IF(A1 [1] 50, TRUE, FALSE)
The correct operator to check 'less than or equal to' is '<='.
Fill both blanks to highlight cells where the value is between 10 and 20 inclusive.
=AND(A1 [1] 10, A1 [2] 20)
The formula uses '>= 10' and '<= 20' to check if the value is between 10 and 20 including both ends.
Fill all three blanks to highlight cells where A1 equals "Pass", B1 is greater than 70, and C1 is TRUE.
=AND(A1 [1] "Pass", B1 [2] 70, C1 [3] TRUE)
The formula checks if A1 equals "Pass", B1 is greater than 70, and C1 is TRUE to highlight the cell.