ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete rows (https://www.excelbanter.com/excel-programming/309226-delete-rows.html)

ArthurJon

Delete rows
 
Here's a real simple one.
Starting in the row where the cursor is, I'd like to
delete every other row. Can someone give me the code for
this?

Don Lloyd

Delete rows
 
Hi,

Do it from the bottom up. Select the bottom row to be deleted.

Sub DelRows()
Dim Rw
Rw = ActiveCell.Row
Do
Rows(Rw).Delete
Rw = Rw - 2
Loop Until Rw < 1
End Sub

regards,
Don

"ArthurJon" wrote in message
...
Here's a real simple one.
Starting in the row where the cursor is, I'd like to
delete every other row. Can someone give me the code for
this?





All times are GMT +1. The time now is 07:32 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com