Description |
|
Syntax | IF( |
Output | text |
Variables
condition
: The logical condition to evaluate.value when true
: Value returned if the condition is true.value when false
: Value returned if the condition is false.
Example
IF(`Profit`>0, “Good”, “Bad”)
Investment | Profit | IF |
Investment A | $500 | Good |
Investment B | -$200 | Bad |
Investment C | $1200 | Good |