Complete the formula to highlight cells greater than 50.
=A1 [1] 50
The formula =A1>50 highlights cells with values greater than 50.
Complete the formula to highlight cells equal to the text "Done".
=A1=[1]Text values in formulas must be in double quotes, so "Done" is correct.
Fix the error in the formula to highlight cells with values less than or equal to 100.
=A1 [1] 100
The correct operator for less than or equal is <=. The option '=>' is invalid in Excel.
Fill both blanks to create a formula that highlights cells with values between 10 and 20 inclusive.
=AND(A1 [1] 10, A1 [2] 20)
The formula uses >= to check if A1 is at least 10, and <= to check if A1 is at most 20.
Fill all three blanks to create a formula that highlights cells containing text starting with "A" and having length greater than 3.
=AND(LEFT(A1,1)=[1], LEN(A1) [2] [3])
The formula checks if the first letter is "A" and the length is greater than 3.