In
In Function
Determines whether a given value exists in a given vector; returns True if the given number does exist in the specified vector.
Syntax
In(scalar Value To Match, vector Value1, Value2...)
Arguments
| Argument | Description |
|---|---|
scalar Value To Match | Value to be evaluated as to whether it exists in the specified vector |
vector Value1, Value2... | List of values that form the specified vector |
Examples:
In(14.23,[FusionTestTable.DoubleColumn])
Returns true since 14.23 is found in given column.