An if-then statement with capability of returning a third, unique value if condition is null
IF( condition, then, else, when null)
condition
then
else
when null
Tests condition and returns then if condition is true, else if condition if false, and a when null value if null.
true
Boolean expression to test
What to return if true
What to return if false
false
What to return if condition is unknown
Outputs then if condition is true, else if condition is false, and a when null value if condition is null.
Last updated 2 years ago