Reference Updated April 8, 2026

SQRT

Category: Math & numeric

Overview

DescriptionReturns the square root of each value in the input. Use when you need the square root of positive values for scaling, normalization, or mathematical transformations.
SyntaxSQRT('Node')
ParameterNode: Input node, specified using the node name in single quotes (e.g. 'Profit').

Function alternative

Use POWER for other roots.


Examples

Square root of positive input values

This example shows the square root computed for a node with simple positive values. Each result is the square root of the corresponding input value.

Input node: A

YearValue
20254
20269
202725

Formula: SQRT('A')

Year→ SQRT Result
20252
20263
20275

FunctionWhen to use instead
POWERWhen you need other roots or a general exponentiation instead of only the square root of a single input.
LNWhen you need a logarithmic transformation instead of taking the square root of the input.
Was this page helpful?