Excel Formula Sqrt

This guide treats “excel formula sqrt” the way busy spreadsheet users actually want it: answer first, a live tool to prove it on your own data, then the reasoning. It is written for Excel but calls out every place Google Sheets differs, and the platform toggle at the top switches all shortcuts between Windows and Mac so nothing here assumes the keyboard you are not on.

Exact answer

In Excel: use =SQRT(number) — it returns the positive square root, so =SQRT(144) returns 12. Negative input returns #NUM!.

Syntax

=SQRT(number)

Arguments

ArgumentDescription
numberrequiredThe value to take the square root of. Negative input returns #NUM!.

Related functions

POWERABSEXP
ƒxStandard DeviationLive

n = 6 · mean = 14.67

Sample std. deviation (σ)
4.131

Variance = 17.067

=STDEV.S(A1:A6)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

SQRT returns the positive square root of a number. It errors with #NUM! on negative input rather than returning a complex result, which is why the common defensive form is =SQRT(ABS(A2)) when the sign is known to be noise. In statistics it is the step that turns a variance into a standard deviation, and it appears in distance and standard-error formulas for the same reason. It is equivalent to =POWER(A2, 0.5), but SQRT states the intent plainly. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “excel formula sqrt”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Converting a variance of 18.49 into a standard deviation: =SQRT(18.49) returns 4.3. Standard error from a standard deviation of 12 across 36 observations: =12/SQRT(36) returns 2. Straight-line distance between two points: =SQRT((x2-x1)^2 + (y2-y1)^2). SQRT is the step that converts squared quantities back into the original units, which is why every standard deviation and distance formula ends with it. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Treat “excel formula sqrt” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.

Common mistakes

  • Passing a negative number, which returns #NUM! — Excel has no real square root for it.
  • Taking the square root of a sum where each term needed squaring first; the squares go inside the brackets.
  • Using SQRT where a different root was meant — a cube root needs =POWER(A2, 1/3).

Frequently asked questions

Why does SQRT return #NUM!?

The input is negative. Wrap it in ABS if the sign is irrelevant, or fix the upstream calculation if it should not have gone negative.

How do I get a cube root?

SQRT only does square roots. Use =POWER(A2, 1/3) for a cube root, or 1/n for any other.

Is SQRT the same as raising to 0.5?

Yes, =SQRT(A2) equals =POWER(A2, 0.5) and =A2^0.5. SQRT is simply the clearest of the three.