Complete the formula to apply a conditional formatting rule that highlights cells greater than 100.
=IF(A1 [1] 100, TRUE, FALSE)
The formula checks if the value in cell A1 is greater than 100. If yes, it returns TRUE to apply the formatting.
Complete the formula to highlight cells that are between 50 and 150 inclusive.
=AND(A1 [1] 50, A1 [2] 150)
The formula uses AND to check if A1 is greater than or equal to 50 and less than or equal to 150, so cells in this range are highlighted.
Fix the error in the formula to highlight cells that are either less than 20 or greater than 80.
=OR(A1 [1] 20, A1 [2] 80)
The OR function highlights cells where A1 is less than 20 or greater than 80. Using '<' and '>' correctly sets these conditions.
Fill both blanks to create a formula that highlights cells with values divisible by 5 and greater than 10.
=AND(MOD(A1, [1]) = 0, A1 [2] 10)
The MOD function checks if A1 divided by 5 leaves no remainder (divisible by 5). The AND function also checks if A1 is greater than 10.
Fill all three blanks to create a formula that highlights cells with text length greater than 4 and containing the letter 'a'.
=AND(LEN(A1) [1] 4, ISNUMBER(SEARCH([2], A1)), A1 [3] "")
The formula checks if the length of text in A1 is greater than 4, if 'a' is found in the text, and if A1 is not empty (<> means not equal to empty).