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