Generate the logical value TRUE
The TRUE function returns the Boolean value TRUE. In other words, the two formulas below based on the IF function are functionally equivalent:
=IF(A1>65,TRUE())
=IF(A1>65,TRUE)
Note that logical expressions will automatically generate TRUE and FALSE results. For example, the formula below will TRUE or FALSE:
=A1>90