SQRT

The SQRT function returns the square root of a number.

Syntax

SQRT(value) - > number

Arguments

ArgumentsDatatypeDescription

value

Number, Node reference

The number or node for which you want the square root of.

Example

Consider an example where a node has the following values. Calculate the square root of these Values.

Number

25

81

169

289

49

To calculate the Square Root, the following formula should be written in the [Square root] node:

SQRT([Number])

Result

Square root

5

9

13

17

7

Last updated