How to Find Range in Microsoft Excel

Configurare noua (How To)

Situatie

If you’re using Microsoft Excel for statistical data, you may need to find the range for a data set. Here we’ll explain a simple way to calculate range in Excel using formulas.

Solutie

  • Calculating Range

Simply put, the difference between the highest and lowest numbers in a data set is known as range. If the range is high, then the data set is spread out further than if the range is low.

As an example, this data set includes the numbers 10, 25, 50, 75, 100. To find the range, you subtract 10 (lowest number) from 100 (highest number). Here, the range is 90:

100 - 10 = 90

While this is a simple example, it’s not always that easy to view your data set and do the subtraction. You may have many numbers in your data set, and they may be in varying order rather than ascending or descending. So, spotting and subtracting the highest and lowest values might not be a quick process.

In Excel, you can use the MAX and MIN functions to find the highest and lowest values. Then, do the subtraction: MAX – MIN = Range.

  • How to Calculate Range in Excel

Open your Excel sheet and select the cell where you want to display the range for your data set. For this example, we have our numbers in cells A1 through A5 and use this formula:

=MAX(A1:A5)-MIN(A1:A5)The first part of the formula, MAX(A1:A5), finds the highest value in the data set. The second part, MIN(A1:A5), finds the lowest value. The minus sign in between subtracts MIN from MAX, giving us our range: 100 – 10 = 90. Formula to find range in Excel

  • Find a Conditional Range

You may have a situation where you need to find the range of your data set but want to exclude certain data. For instance, maybe you have temporary figures for sales or revenue that you want to eliminate when calculating range.

You can add a condition to the MAX function using MAXIFS or the MIN function using MINIFS. The syntaxes are MAXIFS(max_range, criteria_range, criteria) and MINIFS(min_range, criteria_range, criteria). Let’s look at an example.

Here we have a data set in cells C1 through C5 where we want to calculate range but include only the high values, those above 500.

We would use this formula: =MAX(C1:C5)-MINIFS(C1:C5,C1:C5,”>500″) The first part of the formula, MAX(C1:C5), finds the highest value in the data set. The second part, MINIFS(C1:C5,C1:C5,">500"), finds the lowest value in those same cells but requires the values in those cells be higher than 500. And of course, the minus sign is our subtraction to calculate the range. Formula to find conditional range in Excel

So rather than determining range with 5000 – 10 = 4990, the range is calculated as 5000 – 1000 = 4000, excluding those numbers below 500.

Check out Microsoft’s Support pages for these conditional functions if you’re interested in other ways to use MAXIFS or MINIFS. Finding range in your Excel spreadsheet is as easy as a formula using a couple of functions. And for those who need to take it further, you can add conditions to those formulas.

Tip solutie

Permanent

Voteaza

(1 din 3 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?