Overview
Grammar | SQRT(number) | Returns the arithmetic square root of a non-negative number. You can set number to any non-negative number to calculate its arithmetic square root. |
Parameter | number | Non-negative number required, otherwise the function returns null. |
Notes
The function supports only one number and returns illegal if more than one numbers are set.
Example
Formula | Result | Notes |
---|---|---|
SQRT(64) | 8 | |
SQRT(-64) | Returns null. |