IF
Chooses a value based on a condition
Usage
IF(condition, if_true, [if_false])
Parameters
condition |
(Required) The condition to evaluate |
if_true |
(Required) The value to use when the condition evaluates to |
if_false |
The value to use when the condition evaluates to |
Examples
More information
If no value is provided for if_false
(the third value) and the condition is FALSE
, then the IF
function returns NOTHING
.