Description | The |
Syntax | IN ( |
Output | boolean |
Variables
…
,…
: The set of values to compare against.
Example
`Employee ID` IN (101, 203, 204)
Employee ID | IN |
101 | TRUE |
203 | TRUE |
305 |
Checks if a value exists within a specified set of values
Description | The |
Syntax | IN ( |
Output | boolean |
…
, …
: The set of values to compare against.
`Employee ID` IN (101, 203, 204)
Employee ID | IN |
101 | TRUE |
203 | TRUE |
305 |