Syntax
| Parameter | Description |
|---|---|
| number | Parameter of the SQRT function. |
Examples
Basic square root
=SQRT(144)
Distance between two points
=SQRT((A2-C2)^2 + (B2-D2)^2)
Standard error calculation
=STDEV(B2:B100)/SQRT(COUNT(B2:B100))
Common Errors
The argument is negative. You cannot take the square root of a negative number. Use ABS() if you need the square root of the magnitude.
The argument is text, not a number. Ensure the cell contains a numeric value.
Tips
SQRT(x) is identical to POWER(x, 0.5) or x^0.5. Use whichever is more readable in your context.
=SQRT(ABS(A1)) avoids #NUM! errors by taking the square root of the absolute value.
=INT(SQRT(A1))^2=A1 returns TRUE if A1 is a perfect square (like 4, 9, 16, 25...).
Try SQRT in Viztab
Import your data and use SQRT with 370+ other formulas. No signup required.
Open Viztab