IIF
An if-then statement with capability of returning a third, unique value if condition is null
Last updated
Was this helpful?
An if-then statement with capability of returning a third, unique value if condition is null
IF( 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.
Argument
Description
condition
Boolean expression to test
then
What to return if true
else
What to return if false
when null
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
Was this helpful?
Was this helpful?