Complete the formula to highlight cells greater than 100.
=A1 [1] 100
The formula =A1>100 highlights cells with values greater than 100.
Complete the formula to highlight cells equal to the text "Done".
=A1 [1] "Done"
The formula =A1="Done" highlights cells that exactly match the text "Done".
Fix the error in the formula to highlight cells less than or equal to 50.
=A1 [1] 50
The correct operator for 'less than or equal to' is <=. The formula =A1<=50 works properly.
Fill both blanks to highlight cells with values between 10 and 20 (inclusive).
=AND(A1 [1] 10, A1 [2] 20)
The formula =AND(A1>=10, A1<=20) highlights cells with values from 10 to 20 including both ends.
Fill the blanks to highlight cells that are either blank or contain the text "N/A".
=OR(ISBLANK(A1), A1 [1] [2])
The formula =OR(ISBLANK(A1), A1="N/A") highlights cells that are empty or have the text "N/A".