Description
Use this function to return the square root of a positive number. Supported in Chains.
Syntax
SQRT(number)
Inputs
This function has the following arguments:
| Name | Required | Description | Valid input |
|---|---|---|---|
number |
Yes | The number whose root is to be extracted. | A cell reference, a number, or a formula which results in either of these. |
Examples
Sample data
| A | B | |
|---|---|---|
| 1 | 34 |
0 |
| 2 | -2 |
39 |
Sample formulas
| Use case | Formula | Explanation and Result |
|---|---|---|
| Calculate the square root of a positive number. | =SQRT(4) |
This formula works in the following manner:
For this data set, the formula returns 2. |
| Calculate the square root of a negative number in a cell. | =SQRT(A2) |
This formula works in the following manner:
For this data set, the formula returns #NUM!. |
| Calculate the square root of zero in a cell. | =SQRT(B1) |
This formula works in the following manner:
For this data set, the formula returns 0. |
Notes
- If
numberisn't numeric, SQRT returns a #VALUE! error. - If
numberis negative, SQRT returns a #NUM! error. - Wildcards don't work with this function.
Related functions
ABS
EXP
LN
MOD
N
POWER
PRODUCT
SIGN
SUBTOTAL
SUM
SUMIF
SUMIFS
SUMPRODUCT