Element of Set? Function
- Updated2025-03-14
- 1 minute(s) read
Returns whether an element is a member of a set.

Inputs/Outputs
![]() set specifies the set. This input accepts a set of any data type. The default data type is a set of strings. ![]() element specifies the data to look for in the set. This input must be of the same data type as the elements in set. ![]() found? returns TRUE if element is included in set. Otherwise, found? returns FALSE. |