FALSE

FALSE('Node')

In Logical functions

The FALSE function returns 0 for every defined value in the input node. Undefined intersections remain undefined in the result.

Use this function when you need a node of all zeros that matches the dimensionality of an existing node, for example as a baseline or reset value: FALSE('Revenue').

Parameters

NodeNode referenceRequired
Input node, specified using the node name in single quotes (e.g.'Revenue')

Output shape

Dimensionality
Same as input.
Values
0 for every defined intersection. Undefined intersections remain undefined (N/A).
Row count
Same as input. Only defined rows produce output.

Watch out

  • FALSE only covers defined rows. It does not create values where the input is undefined. If you need a 0 for each undefined row, look at the IS_NA function, and invert its result with FALSE.
  • The input value itself does not matter. FALSE returns 0 regardless of whether the value is positive, negative, or zero. Only whether the value is defined matters.
  • Because 0 is interpreted as false in IF conditions, FALSE('Node') can be used as a condition that is always false for defined rows.
  • FALSE accepts expressions as input (e.g. FALSE('A' + 'B')). The result reflects the dimensionality and defined intersections of the combined expression.

Examples

Returns 0 for all defined rows

This example shows FALSE returning 0 for every row that has a defined value in the input node.

Input node: 'Revenue'

YearValue
2025-24.5
202695
2027110

Formula: FALSE('Revenue')

YearFALSE Result
20250
20260
20270

FALSE applied to a combined expression

When FALSE is applied to a sum of two nodes, it returns 0 for every row where the combined expression produces a defined value.

Input node: 'Products'

YearProductValue
2025A67
2026B85
2027A954
2027B-54

Formula: FALSE('Revenue'+'Products')

YearFALSE Result
20250
20260
20270

Undefined values are preserved

FALSE only produces 0 for defined values. Rows where the input is undefined remain undefined in the result.

Input node: 'A'

YearValue
202595
2026
2027236

Formula: FALSE('A')

YearFALSE Result
20250
2026
20270

See also

TRUE
When you need 1 (true) for every defined value instead of 0.
IS_NA
When you need to detect undefined values (returns 1 where undefined, 0 where defined).
Was this page helpful?