Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Moving and Selecting Rows.
Written by Allen Wyatt (last updated June 8, 2019)
This tip applies to Excel 97, 2000, 2002, and 2003
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 < 65536 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 < 65536 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:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2106) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Moving and Selecting Rows.
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!
Have you ever spent a lot of time putting information into a worksheet, only to realize that you should have put it in ...
Discover MoreDo you need to paste formulas without updating the references in whatever you are pasting? You can accomplish this, ...
Discover MoreIf you want to turn a range of cells by 90 degrees within a worksheet, you need to understand how Excel can handle the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments