When linking to the result of a previous step, you should first ensure that the result exists. For example, if a match from a ModelFinder step was not found, linking to the result will cause an error unless there is a Condition step or a CHECKVALID function that provides an alternate value.
Specifies the value to attempt to return.
Specifies the value to return should Value not be returnable. The default value should be the same data type as Value.
1. |
The following example returns an object X of the 10th occurrence if at lest 10 occurrences were found. Otherwise returns 0. CHECKVALID(
ModelFinder.Occurrences(10).X, 0 )
|