Selecting to the Bottom of a Column in a Macro

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


2

Ian has a macro in which he needs to select a range of cells, from the fifth row of a column to the last value in the column. There may be blank cells in the range, but Ian needs to select everything through whatever the last-used cell is in the column.

Selecting the last used cell in a column is fairly straightforward—you use the .End method to locate the cell. For instance, you could use the following single line to select the desired range in column A, from A5 (the fifth row, as Ian indicated) through the last-used cell:
Range("A5",Range("A" & Rows.Count).End(xlUp)).Select
The .Count property when used with the Rows collection returns a numeric value for the total number of rows in the worksheet. Taking it one step further and applying the .End method specifies that the returned range should be just the last-used cell in the column. Note that the macro line assumes you want to select the cells in column A. It is very possible, of course, that you might want to select cells in a different column. The best way to accommodate that is to simply make sure that the "A" portion of the macro is a variable:
sColWanted = "A"
Range(sColWanted & "5",Range(sColWanted & Rows.Count).End(xlUp)).Select
You could even wrap the lines in a subroutine that could then be called from another macro:
Sub SelectCells(sCol As String)
    Range(sCol & "5",Range(sCol & Rows.Count).End(xlUp)).Select
End Sub

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 (13818) 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

Sorting Huge Lists

Got a huge amount of data you need to sort in a worksheet, but Excel doesn't seem to be sorting it correctly? Here's some ...

Discover More

Getting Rid of "Comment" in Comments

When you add a comment to a document, Word presents that comment in a very specific way. If you want to change the way in ...

Discover More

Getting Rid of All Rows Except the One for the Latest Date

As you use Excel to collect data over time, sometimes winnowing out the latest data can present a challenge. Here are a ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (ribbon)

Macros in Two Workbooks Interfere with Each Other

Having macros in multiple open workbooks can sometimes produce unexpected or undesired results. If your macros are ...

Discover More

Removing Pictures for a Worksheet in VBA

Excel allows you to add pictures to your worksheet, even within a macro. However, you might have a bit harder time ...

Discover More

Making Modal Dialog Boxes Appear in Front of Workbooks

Perhaps the most common way of communicating with programs is through the use of dialog boxes. We expect dialog boxes to ...

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 two more than 7?

2021-01-03 10:37:41

J. Woolley

There is a typo error in the next-to-last statement of my modified Sub SelectCells(...) below. Although
Range(sCol & "5", Range(sCol & lastRow)).Select
works as intended, it should be written more clearly as
Range(sCol & "5", sCol & lastRow).Select


2021-01-02 10:19:54

J. Woolley

The Tip's final subroutine will not select everything if the column's last-used cell is in a hidden row (by filtering, for example). This modification will:
Sub SelectCells(sCol As String)
lastRow = Columns(sCol).Find(What:="*", _
After:=Columns(sCol).Cells(1), _
LookAt:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
Range(sCol & "5", Range(sCol & lastRow)).Select
End Sub


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.