In Excel: use =MAX(A2:A100)-MIN(A2:A100) — Excel has no RANGE function, so the range is the largest value minus the smallest.
On this page7
Put the values in one clean column with no totals or text rows mixed in.
Enter =MAX(range)-MIN(range) for the plain range.
For a measure that survives outliers, use =QUARTILE.INC(range,3)-QUARTILE.INC(range,1).
For the range within a category, use =MAXIFS(values, criteria_range, criterion)-MINIFS(...) — Excel 2019 and later.
Report the minimum and maximum alongside the range; the single number hides which end moved.
Check =COUNT(range) against =COUNTA(range) to catch numbers that are stored as text and silently excluded.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
In statistics the range is a single number: the spread between the highest and lowest value. Excel has no built-in RANGE function because the calculation is one subtraction of MAX and MIN. Two related measures are usually what people actually need. The interquartile range, =QUARTILE.INC(A2:A100,3)-QUARTILE.INC(A2:A100,1), covers the middle half and is not thrown off by a single outlier the way the plain range is. And a conditional range — the spread within one category — is =MAXIFS(B:B, A:A, "North")-MINIFS(B:B, A:A, "North") in Excel 2019 and later. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “calculate range excel”, 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 cells 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
Delivery times in A2:A100 run from 1.2 to 9.8 days, so =MAX(A2:A100)-MIN(A2:A100) returns 8.6. One late shipment at 41 days would push that to 39.8 and make the range useless as a description. =QUARTILE.INC(A2:A100,3)-QUARTILE.INC(A2:A100,1) returns 3.1 either way, because the interquartile range ignores the tails. For the spread within one region: =MAXIFS(B2:B100, A2:A100, "North")-MINIFS(B2:B100, A2:A100, "North"). The range is the first number anyone asks for after the average, and knowing that Excel has no RANGE function — plus when to reach for the interquartile range instead — settles the question in one formula. 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, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. Treat “calculate range excel” 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
- Looking for a RANGE function — there is none, and the search usually ends on the unrelated meaning of "range" as a block of cells.
- Including a totals row in the selection, which makes the maximum the total.
- Quoting the plain range on data with one extreme outlier, where the interquartile range is the honest number.
- Using
MAXandMINover a column containing numbers stored as text, which are ignored without warning.
Frequently asked questions
How do I find the range in Excel?
=MAX(A2:A100)-MIN(A2:A100). There is no RANGE function; the range is simply the largest value minus the smallest.
What is the interquartile range formula?
=QUARTILE.INC(A2:A100,3)-QUARTILE.INC(A2:A100,1). It measures the spread of the middle 50% and is not distorted by a single extreme value.
How do I find the range for one category only?
Use =MAXIFS(values, criteria_range, criterion)-MINIFS(values, criteria_range, criterion) in Excel 2019 or later.
Why is my range so large?
Usually one outlier, or a totals row caught inside the selection. Check MIN and MAX separately, and compare against the interquartile range.
Other ways people ask this
On the way here you may have searched this as “calculate range in excel”, “how do you calculate range in excel”, “how to calculate a range in excel” and “how to calculate the range in excel” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “calculate range in excel”, “how do you calculate range in excel”, “how to calculate a range in excel” all point at the one operation explained on this page, which is why they all lead here.