Finding the End of the Worksheet

Written by Allen Wyatt (last updated December 18, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003


2

When you press Ctrl+End, Excel takes you to the bottom cell of your worksheet. This is defined as the intersection of the right-most column and the bottom row. If you delete some rows or columns in the worksheet, you would expect that Ctrl+End would still take you to the bottom cell. It does not, however. What it does is take you to the original bottom cell.

For instance, if you load a worksheet for which the bottom cell is H20, and then delete three rows and one column, you would expect Ctrl+End to take you to G17. Instead, it still takes you to H20.

The only way around this is to save the file. You don't have to close it, simply save the file. Doing so causes Excel to recalculate the bottom cell.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (1923) applies to Microsoft Excel 97, 2000, 2002, and 2003.

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

Default Envelope Margins

When you create envelopes in Word, you may want to adjust where the return address and main address are printed. Doing so ...

Discover More

Assigning Macros to Graphics

The graphics you place in a worksheet can do more than just look pretty. You can also assign macros to a graphic, which ...

Discover More

Field in Footer Won't Update

Word provides a handy shortcut that allows you to update the fields in any text you've selected. When you select your ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More ExcelTips (menu)

Jumping to a Range

Need a quick way to jump to a particular part of your worksheet? You can do it by using the Go To dialog box.

Discover More

Going to the Corners of a Selected Range

When you select a range of cells (particularly if it is a large range of cells), you may not be quite sure if you've ...

Discover More

Choosing Direction after Enter On a Workbook Basis

Excel lets you specify how it should behave when you press Enter. If you change this behavior, Excel assumes you want it ...

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 seven minus 4?

2016-06-12 06:28:47

Willy Vanhaelen

You can also add this macro to your personal book:

Sub GoToLastCell()
If TypeName(Selection) <> "Range" Then Exit Sub
ActiveSheet.UsedRange.SpecialCells(xlLastCell).Select
End Sub

You can it assign the shortcut key Alt+Ctrl+End in "ThisWorkbook" of you personal book:

Private Sub Workbook_Open()
Application.OnKey "^%{end}", "GoToLastCell" 'Alt+Ctrl+End
End Sub

From now on when you press Alt+Ctrl+End you always get the real last cell no matter whether you deleted some column/rows or not even if your file hasn't been saved.


2016-06-11 05:09:47

Rick Rothstein

Another way around the problem (in case you don't want to physically save the file at that particular time) is to go into the VB editor (press Alt+F11 from any worksheet) and execute a command in the Immediate Window (press Ctrl+G if not visible) that involves the UsedRange. For example, executing this in the Immediate window clears the problem...

? ActiveSheet.UsedRange.Address


This Site

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.

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.