Reference Updated April 8, 2026

SIGNUM

Category: Math & numeric

Overview

DescriptionExtracts the sign of a number. Positive numbers become 1, negative numbers become -1, and zero remains 0. Use when you need to reduce a value to its sign for directional logic, classification, or further numeric transformations.
SyntaxSIGNUM('Node')
ParameterNode: Input node, specified using the node name in single quotes (e.g. 'Profit').

Examples

Extracting the sign of positive, negative, and zero values

This example shows how SIGNUM returns -1 for negative values, 0 for zero, and 1 for positive values across products and years.

Input node: A

YearProductValue
2025Car-1
2025Truck3
2026Car0
2026Truck-8561451155
2029Car65452141023

Formula: SIGNUM('A')

YearProduct→ SIGNUM Result
2025Car-1
2025Truck1
2026Car0
2026Truck-1
2029Car1

FunctionWhen to use instead
ABSWhen you need the absolute value of each number instead of only its sign.
ROUNDWhen you need to round numeric values for presentation or calculation steps instead of reducing them to -1, 0, or 1.
Was this page helpful?