Implements multiple if-then statements simultaneously
IFS( condition, then, [condition2, then2, ...], else )
condition
then
[condition2, then2, ...]
else
Tests multiple if-then statements, returning specified then values for each pair and the else value if no condition is met.
Argument
Description
condition(s)
Boolean expression to test
then(s)
What to return if true
true
What to return if no condition is met
Outputs specified then value for each condition that is true and else if all conditions are false.
conditions
Last updated 4 years ago
Was this helpful?