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