IsInColumn / Boolean Layer

Create boolean mask columns indicating if values in one column exist within another column's set of values. Similar to SQL EXISTS or pandas merge existence check. Returns True when a value appears anywhere in the reference column.

Common applications:

  • Foreign key validation
  • Dynamic whitelist checking
  • Cross-reference verification
  • Membership testing
  • Relationship validation

Example:

IndexProduct IDValid IDsIs In Valid IDs
0A001A001true
1B002A002false
2A002B001false
3nullA001null
4B001nullnull
Table
0
0
Table

Select

column

The column to check for membership. Each value is tested for existence in SelectCheck. Null values result in null in the output mask.

The reference column containing the set of valid values. Must be compatible with Select type. Common uses:

  • Master list of IDs
  • Valid categories
  • Permitted codes
  • Reference data

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.