Complete the code to apply conditional formatting that highlights cells greater than 100.
Format cells if: Cell value [1] 100
The rule should highlight cells with values greater than 100, so use 'is greater than'.
Complete the formula to highlight cells in column A that contain the word "Done".
Custom formula is: =ISNUMBER([1](A1, "Done"))
The SEARCH function looks for text inside a cell. It returns a number if found, so it works for this condition.
Fix the error in the formula to highlight cells in B2:B10 that are empty.
=ISBLANK([1])Conditional formatting formulas apply to each cell individually. Use a single cell reference like B2, not a range.
Fill both blanks to create a formula that highlights cells in C2:C20 if the value is between 50 and 100.
=AND(C2 [1] 50, C2 [2] 100)
The formula checks if C2 is greater than or equal to 50 and less than or equal to 100.
Fill all three blanks to create a formula that highlights cells in D2:D15 if the text starts with "Urgent".
=LEFT([1], [2]) = [3]
The LEFT function extracts the first 6 characters from D2 and compares them to the text "Urgent".