Notes
IF(logical_test, value_if_true, value_if_false)
Checks whether a condition is true, and returns one value if TRUE and another value if FALSE.
Example:
IF(7>5, "Seven is greater than five", "Five is greater than Seven")=Seven is greater than five