IF(condition[,if-true,if-false])
IF function can be used to evaluate conditionally other expressions. IF evaluates condition. If condition returns a non-zero value the result of the IF expression is the if-true expression, otherwise IF evaluates to the value of if-false.
IF(FALSE,TRUE,FALSE) equals FALSE.