SQRT function
From Planfix
SQRT() — returns the positive value of the square root.
Format
SQRT(number)
Examples
Formula | Description | Result |
---|---|---|
SQRT(16) | Square root of number 16 | 4 |
SQRT(-16) | Square root of number -16 | ERROR |
SQRT(ABS(-16)) | Using the ABS function, get the absolute value of -16, then find the square root | 4 |