Functions - If |
|
|
Returns one of two values based on a Boolean. SyntaxIf(criterion, first, second) ParameterscriterionThe
criterion being evaluated. NotesThe criterion parameter must be a Boolean, and the two parameters first and second must be of the same type. ExampleThis expression part evaluates to 123: If(True, 123, 456) |