TRUE
Category: Logical functions
Overview
Description | Returns true (1) for every defined value in the input. Use when you need a constant true flag across all defined intersections of an input node. |
|---|---|
Syntax |
|
Parameters | Node: Input node, specified using the node name in single quotes (e.g. |
Function alternative
TRUE only returns
1for defined rows in the input. If you need to flag undefined rows instead, use IS_NA.
Examples
Returns 1 for all defined rows
This example shows TRUE returning 1 for every row that has a defined value in the input node.
Input node: Revenue
Year | Value |
|---|---|
2025 | -24.5 |
2026 | 95 |
2027 | 110 |
Formula: TRUE('Revenue')
Year | → TRUE Result |
|---|---|
2025 | 1 |
2026 | 1 |
2027 | 1 |
TRUE applied to a combined expression
This example shows TRUE applied to a sum of nodes. It returns 1 for each year where the combined expression produces a defined value.
Input node: Additional Revenue
Year | Product | Value |
|---|---|---|
2025 | A | 95 |
2026 | B | -56 |
2027 | A | 107 |
2027 | B | 5 |
Formula: TRUE('Revenue'+'Additional Revenue')
Year | → TRUE Result |
|---|---|
2025 | 1 |
2026 | 1 |
2027 | 1 |
Undefined values remain undefined
TRUE only produces 1 for defined values. Rows where the input is undefined remain undefined in the result.
Input node: A
Year | Revenue |
|---|---|
2025 | 59 |
2026 | |
2027 | 157 |
Formula: TRUE('A')
Year | → TRUE Result |
|---|---|
2025 | 1 |
2026 | |
2027 | 1 |