Select Area - Line "X" to end of sheet

pzamory

Board Regular
Joined
May 2, 2002
Messages
135
How would I remove Lines 100 to 5000 without selecting them by scrolling down with the mouse? Thanks.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I would activate the sheet in question and go to VBE (Alt+F11) and get into Immediate window (Ctrl+G) then copy and paste the following code line into this pane:

Code:
ActiveSheet.Range("A100:A5000").EntireRow.Delete

Then finally hit Enter key to execute the code.

Or following will select the rows you need when executed:
Code:
ActiveSheet.Range("A100:A5000").EntireRow.Select

and now you don't need to select them by scrolling down.
 
Upvote 0
Hi pzamory

To select the rows

- press F5 (GoTo)
- enter in the reference

100:5000

- press OK

Then right-click on the rows-> delete
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,835
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top