Tests whether expression is true or false and returns desired values accordingly
IF( condition, then, else )
condition
then
else
Tests condition and returns then if condition is true and else if condition is false
true
false
Argument
Description
Boolean expression to test
What to return if true
What to return if false
Outputs then if condition is true and else if condition is false
Last updated 4 years ago
Was this helpful?