Investment Studio > Expressions > Functions > Math & Trig > SQRT

float sqrt(float argument)

Returns the square root of the argument (= argument^0.5). The argument may not be negative.

Example

=sqrt(4)

equals 2

=sqrt(-4)

returns #NUM! (negative arguments are not allowed).

See also abs, power, sqr, sqrtpi.