Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Moving and Selecting Rows.

Moving and Selecting Rows

Written by Allen Wyatt (last updated January 9, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021


James asked if there is a keyboard shortcut to move down a row and select the entire row. In Excel there is no way to do this with a single keystroke, but there is a way to do it using two keystrokes. All you need to do is press the Down Arrow, immediately followed by pressing Shift+Space Bar.

If you do a lot of this type of moving about, however, you would probably be more interested in a macro that combines the two steps into a single step that can be initiated by a shortcut key. The following macro will work:

Sub SelectRowDown1()
    If ActiveCell.Row < 1048576 Then
        ActiveCell.Offset(1, 0).Select
        ActiveCell.EntireRow.Select
    End If
End Sub

If you assign this to a shortcut key, such as Ctrl+D, then every time you press the shortcut key, you move down a row and it is selected. The problem with this approach, however, is that after the macro has been run, the first cell in the row is always the active cell. This is different than if you use the Down Arrow, Shift+Space Bar method of moving and selecting.

It is apparently the EntireRow.Select method that results in the first cell being activated. To get around this problem, all you need to do is determine which column you were in, and then activate that cell. The following version of the macro does just that:

Sub SelectRowDown2()
    If ActiveCell.Row < 1048576 Then
        ActiveCell.Offset(1, 0).Select
        iCP = ActiveCell.Column
        ActiveCell.EntireRow.Select
        ActiveCell.Offset(0, iCP - 1).Activate
    End If
End Sub

If you are interested in a macro that moves up, you can use this macro:

Sub SelectRowUp()
    If ActiveCell.Row > 1 Then
        ActiveCell.Offset(-1, 0).Select
        iCP = ActiveCell.Column
        ActiveCell.EntireRow.Select
        ActiveCell.Offset(0, iCP - 1).Activate
    End If
End Sub

You can assign this macro to the Ctrl+U shortcut key, and then your movement macros will be complete.

If you need something that is more "high powered" than these macros, check out the RowLiner add-in from Pearson Software Consulting Services:

http://www.cpearson.com/excel/RowLiner.htm

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 (11473) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Moving and Selecting Rows.

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

Keyboard Changes to Unwanted Foreign Language

There you are typing along, minding your own business, when wham! You end up in an entirely different language and you ...

Discover More

Extracting Street Numbers from an Address

Want to know how to move pieces of information contained in one cell into individual cells? This option exists in using ...

Discover More

Viewing Footnotes and Endnotes

Footnotes and endnotes are normally visible with the rest of your document, but such visibility is dependant on which ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Checking for an Entry in a Cell

You may be looking for a way to have a formula determine if a particular cell has anything in it. Here's how you can find ...

Discover More

Typing a Schwa Character in Excel

How you add special characters to Excel can differ from how you add them in other Office programs, such as Word. This tip ...

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 7 - 7?

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.