Specifies the condition to verify.
Specifies the value to return should Condition evaluate to TRUE.
Specifies the value to return should Condition evaluate to FALSE.
1. |
The following example returns the first occurrence's X object, if any occurrences were found. Otherwise, returns 0.
IF(ModelFinder.TotalNumberFound > 0,
ModelFinder.Occurences(1).X, 0)
|