And / Logical Layer

Create a boolean column by applying logical AND operation between two boolean columns. Similar to pandas &, SQL AND, or R's &&.

Truth table:

LeftRightResult
truetruetrue
truefalsefalse
falsetruefalse
falsefalsefalse
nullanynull
anynullnull

Common applications:

  • Combined conditions
  • Multiple criteria filtering
  • Validation rules
  • Security checks
  • Quality control
Table
0
0
Table

The first boolean column for the AND operation. Forms the left side of the logical expression. Null values propagate to the result.

The second boolean column for the AND operation. Forms the right side of the logical expression. Null values propagate to the result.

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.