How to limit number of rows Excel?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to be able to hit "end of page" (CTRL END) and have it go no further
than row 100 and column AZ but i cannot figure out how to do it.
 
Ctrl end takes you to the bottom right hand of your sheet. If you have data
extending beyond that, Ctrl End will take you beyond that. Try Ctrl G, type
in AZ100
and hit Enter
 
sorry, you can also record a little macro, assign something like Ctrl e as
shortcut key, and in this way go there.

Sub Macro1()
Application.Goto Reference:="R100C52"
End Sub
 
I want to be able to hit "end of page" (CTRL END) and have it go no further
than row 100 and column AZ but i cannot figure out how to do it.

You can hide the rows and columns you won't be using. Just select
(place your cursor in the beginnging row to hide) hold down the shift
key and press end+down arrow. Then format / rows / hide. Do the same
for columns.

I use this a lot to define where my worksheets stop so I don't go
paging all over the place for data not in view.

Don S
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top