Extracting Numbers within a Range

Written by Allen Wyatt (last updated January 16, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


Robert has a series of numbers in column A that range from 1 to 100. He would like to extract only those values between 65 and 100, inclusive, and place them in column B. He wonders if there is a way to do that easily.

The short answer is that there is a very easy way to do it, provided you don't mind sorting the list of numbers. Follow these steps:

  1. Select a cell in column A. (It doesn't really matter which cell you select, as long as it is one of the cells that contains a number.)
  2. Display the Data tab of the ribbon.
  3. Click the Sort Smallest to Largest tool, in the Sort & Filter group. Excel sorts all the numbers in the column.
  4. Select the numbers that you want to put into column B.
  5. Press Ctrl+X to cut the cells to the Clipboard.
  6. Select cell B1 (or the first cell in column B where you want the values to appear).
  7. Press Ctrl+V to paste the cells into the column.

That's it; you've now got the desired cells into column B. If you simply wanted to copy the cells, then in step 5 you could have pressed Ctrl+C instead.

If you need to keep the values in column A in their original order (minus the values you want to move), you can do it by using column B as a "place retainer" column. To the right of the first value in column A, put the vaue 1. Then, below that in column B put a 2, then a 3, and so on, until each value in column A has a corresponding value in column B that indicates the numbers location. Then, follow these steps:

  1. Select a cell in column A. (It doesn't really matter which cell you select, as long as it is one of the cells that contains a number.)
  2. Display the Data tab of the ribbon.
  3. Click the Sort Smallest to Largest tool, in the Sort & Filter group. Excel sorts all the numbers in the column.
  4. Select the numbers in column A that you want to move, along with the numbers to the right of them in column B.
  5. Press Ctrl+X to cut the cells to the Clipboard.
  6. Select cell D1. (It is important to select cell D1 because you need to leave column C blank.)
  7. Press Ctrl+V to paste the cells into columns D and E.
  8. Select a cell in column B.
  9. Display the Data tab of the ribbon.
  10. Click the Sort Smallest to Largest tool, in the Sort & Filter group. Excel sorts all the numbers in the column based on the values in column B.
  11. Select a cell in column E.
  12. The Data tab of the ribbon should still be displayed.
  13. Click the Sort Smallest to Largest tool, in the Sort & Filter group. Excel sorts all the numbers in the column based on the values in column E.
  14. Delete columns B, C, and E.

At this point the values in columns A and B reflect their original order, from when they were all in column A.

Another way to move the cells is to use the filtering capabilities of Excel. Follow these steps:

  1. Select a cell in column A. (It doesn't really matter which cell you select, as long as it is one of the cells that contains a number.)
  2. Display the Data tab of the ribbon.
  3. Click the Filter tool. Excel adds a filter drop-down arrow at the right side of the column A header.
  4. Click the down-arrow and choose Number Filters | Between. Excel displays the Custom AutoFilter dialog box. (See Figure 1.)
  5. Figure 1. The Custom AutoFilter dialog box.

  6. In the Greater Than or Equal To box, enter 65.
  7. In the Less Than or Equal To box, enter 100.
  8. Click OK. Excel limits what is shown to only those rows that meet the criteria you specified in steps 4 through 6.
  9. Select the cells that are displayed.
  10. Press Ctrl+C to copy the cells to the Clipboard.
  11. Select cell B1 (or the first cell in column B where you want the values to appear).
  12. Press Ctrl+V to paste the cells into the column.
  13. Select one of the cells in column A.
  14. Again click the Filter tool. (The Data tab of the ribbon should still be displayed.) Excel removes the filter you previously applied.

You could also use formulas in column B to pull out the values that are within the desired range. An easy way to do this is to place this formula in cell B1:

=IF(AND(A1>=65, A1<=100),A1,"")

Copy the formula down as far as necessary in column B and you end up with any values in the range of 65 to 100, inclusive, being "copied" into column B. If the value is outside this range, then the cell in column B is left empty.

Assuming that you don't want any empty cells in column B, then you could use an array formula to grab the values. If your values are in the range A1:A500, place the following in cell B1:

=IFERROR(INDEX(A$1:A$500,SMALL(IF(A$1:A$500>=65,ROW($1:$500)),ROW())),"")

Enter it using Ctrl+Shift+Enter, and then copy the formula down as far as you'd like.

There are, of course, macro-based solutions you can use. These are helpful if you need to perform this task quite a bit with data that you retrieve from an outside source. The following is a simple example of a macro you could use:

Sub ExtractValues1()
    Dim x As Integer

    x = 1
    For Each cell In Selection
        If cell.Value >= 65 And cell.Value <= 100 Then
            Cells(x, 2) = cell.Value
            x = x + 1
        End If
    Next cell
End Sub

You use the macro by selecting the cells you want evaluated in column A and then running it. It looks at each cell and copies the value to column B. The original value in column A is left unchanged.

For more flexibility you could rely on asking the user for the lower and upper values, as shown in this macro:

Sub ExtractValues2()
    Dim iLowVal As Integer
    Dim iHighVal As Integer

    iLowVal = InputBox("Lowest value wanted?")
    iHighVal = InputBox("Highest value wanted?")

    For Each cell In Range("A:A")
        If cell.Value <= iHighVal And cell.Value >= iLowVal Then
            ActiveCell.Value = cell.Value
            ActiveCell.Offset(1, 0).Activate
        End If
    Next
End Sub

Before you run the macro, select the cell at the top of the range where you want the extracted values placed. Nothing in column A is affected; only the values between the lower and upper range are copied to the new location.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13397) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Importing Many Files Into Excel

Importing a single file is easy. Importing a whole slew of files can be much more of a challenge.

Discover More

Slowing Down Mouse Selection

Ever tried to select a range of cells using the mouse, only to have the cells scroll by so quickly you can't make the ...

Discover More

Searching for White Space

White space permeates our documents and sometimes you'll need to search for that white space. Word makes it easy to ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

How Many Rows and Columns Have I Selected?

Want a quick way to tell how may rows and columns you've selected? Here's what I do when I need to know that information.

Discover More

Can't Enter Years in a Cell

Sometimes getting the right thing to show up in a cell can be a bit tricky when working with dates. If you enter a year ...

Discover More

Pasting Excel Data within Word's Page Margins

The programs in the Microsoft Office suite are designed to work with each other easily. Sometimes there can be hiccups ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.