SQRT returns the square root of a number — the value that, multiplied by itself, gives the original number.
SQRT returns the square root of a number. It only works with positive numbers (or zero) — negative inputs return a #NUM! error.
In real spreadsheets it shows up most often inside statistical formulas, like calculating standard deviation manually or working out margin of error.
=SQRT(number)| Argument | Description |
|---|---|
| number required | The number to find the square root of. Must be zero or positive. |
=SQRT(81)Returns 9.
=SQRT(-9)Returns #NUM! — wrap in ABS first if you specifically need the root of a negative magnitude: =SQRT(ABS(-9)).
=1.96*(STDEV/SQRT(n))A simplified margin-of-error formula — error shrinks with the square root of sample size, not proportionally to it.
This always errors. If you mean the magnitude, wrap the input in ABS first.
ExcelPro has hands-on SQRT exercises built into real job scenarios — free to start.
Try SQRT exercises →