Complete the formula to return TRUE if A1 is FALSE.
=NOT([1])The NOT function reverses the logical value. Using A1 inside NOT returns TRUE if A1 is FALSE.
Complete the formula to return TRUE if B2 is NOT equal to 10.
=NOT(B2 [1] 10)
The operator '=' checks for equality. NOT reverses the logical test, so NOT(B2=10) returns TRUE if B2 is not equal to 10.
Fix the error in the formula to correctly return TRUE if C3 is NOT TRUE.
=NOT([1])NOT(C3) returns TRUE if C3 is FALSE. Writing C3 alone inside NOT is correct.
Fill both blanks to create a formula that returns TRUE if D4 is NOT blank.
=NOT(D4 [1] [2])
The formula checks if D4 is not equal to an empty string "" (blank). NOT reverses it, so it returns TRUE if D4 is not blank.
Fill both blanks to create a formula that returns TRUE if E5 is NOT greater than 100.
=NOT(E5 [1] [2])
The formula inside NOT checks if E5 is greater than 100. NOT reverses it, so it returns TRUE if E5 is less than or equal to 100.