This function returns the square root of the input number.

The input has to be a non-negative value.

Syntax
 sqrt(number) #Output: Number
Examples
Parser expressionDescription
sqrt(4)

This example returns:

2.0

sqrt(0)

This example returns:

0.0

Additional information

Parameters used in this function

ParameterInput (data type)Description
number

NUMBER

Any given non-negative number or numeric field code.
Output

This function returns a NUMBER


Use cases and examples