How to Find Range in Excel

There are two ways to “find range in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

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
Annotated stepsExcel
1

Put the values in one clean column with no totals or text rows mixed in.

2

Enter =MAX(range)-MIN(range) for the plain range.

3

For a measure that survives outliers, use =QUARTILE.INC(range,3)-QUARTILE.INC(range,1).

4

For the range within a category, use =MAXIFS(values, criteria_range, criterion)-MINIFS(...) — Excel 2019 and later.

5

Report the minimum and maximum alongside the range; the single number hides which end moved.

6

Check =COUNT(range) against =COUNTA(range) to catch numbers that are stored as text and silently excluded.

=MAX(A2:A100)-MIN(A2:A100)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. Treat “find range in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. 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 turns a data step that keeps your analysis trustworthy into a method you can reuse, explain, and defend when the workbook leaves your screen.

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

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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. Here is the takeaway for “find range in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

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 MAX and MIN over 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

People reach this page typing “how do i find the range in excel”, “how to find range using excel”, “how to find the range in excel” and “how do you find range in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “how do i find the range in excel”, “how to find range using excel”, “how to find the range in excel” all point at the one operation explained on this page, which is why they all lead here.