Formula Guide

The Excel SQRT Function
explained simply

SQRT returns the square root of a number — the value that, multiplied by itself, gives the original number.

ExcelPro · 3 min read · Updated June 2026
Contents
  1. What does SQRT do?
  2. Syntax
  3. 3 examples
  4. FAQ

What does SQRT do?

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.

Syntax

=SQRT(number)
ArgumentDescription
number requiredThe number to find the square root of. Must be zero or positive.

Examples

Example 1
Basic square root
=SQRT(81)

Returns 9.

Example 2
Square root of a negative becomes an error
=SQRT(-9)

Returns #NUM! — wrap in ABS first if you specifically need the root of a negative magnitude: =SQRT(ABS(-9)).

Example 3
Margin of error calculation
=1.96*(STDEV/SQRT(n))

A simplified margin-of-error formula — error shrinks with the square root of sample size, not proportionally to it.

Common mistakes

⚠️ Feeding SQRT a negative number directly

This always errors. If you mean the magnitude, wrap the input in ABS first.

FAQ

Does SQRT work with decimals?
Yes — =SQRT(2) returns approximately 1.414.

Practise SQRT with real data

ExcelPro has hands-on SQRT exercises built into real job scenarios — free to start.

Try SQRT exercises →

Related formulas

POWER ABS STDEV