
Returns the positive square root of a number. SQRT is commonly used in geometry, distance formulas, and statistical models that depend on the principal square root.
The Excel SQRT function returns the positive square root of a number. If a value multiplied by itself produces the original number, SQRT returns that value. For example, =SQRT(25) returns 5 because 5 multiplied by 5 equals 25.
SQRT returns only the principal square root, which means the non-negative result. It does not return both algebraic roots. The input must also be non-negative. If the argument is negative, Excel returns #NUM! because standard worksheet SQRT operates in the real-number domain rather than complex numbers.
Finds the principal square root of a non-negative value. Useful in geometry, distance calculations, and statistical formulas derived from squared values.
Returns the positive square root of the input. Zero returns zero. Negative input returns #NUM!.
=SQRT(number)
SQRT has one required argument: the number whose square root you want. That argument can be a literal, a cell reference, or any formula that evaluates to a non-negative number. When the intent is specifically "take the square root," SQRT is usually clearer than writing the same operation as an exponent.
SQRT overlaps with exponentiation functions, but it has a narrower and more explicit purpose. When the operation is specifically a square root, SQRT communicates that intent immediately.
| Approach | Meaning | Example | Use When |
|---|---|---|---|
SQRT(n) |
Square root | =SQRT(25) -> 5 |
You want the clearest square-root formula |
POWER(n,0.5) |
Equivalent square-root calculation | =POWER(25,0.5) -> 5 |
You are already working in an exponent-based formula pattern |
n^0.5 |
Equivalent square-root calculation | =25^0.5 -> 5 |
You want concise exponent notation |
IMSQRT(n) |
Square root in complex-number context | Complex result | You are working with negative or imaginary values in engineering-style formulas |
SQRT is not broader than exponentiation, but it is more explicit. That matters in shared workbooks because readability is often more valuable than compactness, especially in technical formulas that will be maintained later by another analyst.
SQRT appears naturally in geometry. If the area of a square is known, the side length is the square root of that area. The function also appears in coordinate geometry, where the Euclidean distance between two points is derived by squaring coordinate differences, summing them, and then taking the square root of the result.
It also surfaces in statistical work because many measures are built from squared deviations. Standard deviation, for example, is conceptually the square root of variance. Excel offers dedicated statistical functions for those tasks, but understanding SQRT helps when you need to build or inspect the underlying calculation structure.
SQRT(area) to derive the side length of a square from its area.SQRT(POWER(x2-x1,2)+POWER(y2-y1,2)) for straight-line distance in two dimensions.This is the direct use of the function. SQRT returns the principal square root of the input and does not evaluate alternative signed roots. For worksheet calculations, that means the result is always non-negative as long as the input itself is valid.
=SQRT(25) // 5
=SQRT(2) // about 1.41421356
=SQRT(B1) // square root of the value in B1
In cell F1, use SQRT on B1 (25) to find its square root. Expected result: 5.
If a square has area 144, its side length is the value that produces 144 when squared. SQRT reverses that relationship directly. This pattern appears in geometry, layout work, and any model where an area must be translated back into a linear dimension.
=SQRT(B2)
// B2 = 144
// Result = 12
In cell F2, use SQRT on B2 (144) to find the side length of a square with that area. Expected result: 12.
This formula applies the Pythagorean theorem. The coordinate differences are squared to remove direction, added together, and then square-rooted to return the straight-line distance. It is a standard pattern in geometric and engineering-style models.
=SQRT(POWER(B4-B3,2)+POWER(C4-C3,2))
// (0,0) to (3,4)
// SQRT(3^2 + 4^2) = SQRT(25) = 5
In cell F3, use SQRT with POWER to find the distance between (B3,C3) and (B4,C4). Formula: =SQRT(POWER(B4-B3,2)+POWER(C4-C3,2)). B3=0, C3=0, B4=3, C4=4. Expected: 5.
SQRT does not need a direct cell input. It can be applied to any formula result, which makes it useful in larger expressions. In this example, the sum is evaluated first, and SQRT converts that total into its square root afterward.
=SQRT(B5+C5)
// B5 = 8, C5 = 17
// 8 + 17 = 25
// SQRT returns 5
In cell F4, use SQRT on the sum of B5 and C5 (8+17). Expected result: 5.
When negative inputs are possible, decide whether the model should reject them or transform them before calling SQRT. Using SQRT(ABS(A1)) may be appropriate when only magnitude matters, but it also changes the mathematical meaning of the calculation. In models where the sign carries meaning, it is usually better to handle the negative case explicitly instead of masking it.
SQRT(0) returns 0.#NUM!.IMSQRT when imaginary results are intentional.SQRT returns the positive square root of a non-negative number.=SQRT(number) with one required argument.#NUM!.Tell your friends about this post