Active cell row delete

jamada

Active Member
Joined
Mar 23, 2006
Messages
323
Hi


I'm pasting a range into a sheet, however it s top left corner of the pasted range could be pasted in any row of column 'A".
With the pasted range still active (Highlighted) I want to Run a MACRo that will delete the first 14 rows of this newly pasted range!

For Example, the following code will delete active row and all below, however I only want to delete 14 rows.

I've seen examples delete multiple rows, however none deleting multiple rows from the active row, is someone can make sense of this , much appreciated.

Rows(ActiveCell.Row & ":" & Rows.Count).Delete ' Need this to be 14 rows including Active row to be deleted.

Thank You
Graham
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Rows(ActiveCell.Row & ":" & ActiveCell.Row+13).Delete
please have a try.
 
Upvote 0
shaowu459, that was exactly what I required it to do!!

Thank you for you for your assistance for this!

Graham
 
Upvote 0

Forum statistics

Threads
1,222,753
Messages
6,168,011
Members
452,160
Latest member
Bekerinik

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