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:
Result: 2. |
| Calculate the square root of a negative number in a cell. | =SQRT(A2) |
This formula works in the following manner:
Result: #NUM!. |
| Calculate the square root of zero in a cell. | =SQRT(B1) |
This formula works in the following manner:
Result: 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.