inserting rows on a very large sheet

ferret

New Member
Joined
Oct 15, 2002
Messages
25
Hello and thanks for reading this.
I have a very large sheet (around 2500 rows),
and what i want to do is insert three blank rows between all the existing rows.
Any idea how i can without doing every three row group individually?....
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
On 2002-10-23 09:00, ferret wrote:
Hello and thanks for reading this.
I have a very large sheet (around 2500 rows),
and what i want to do is insert three blank rows between all the existing rows.
Any idea how i can without doing every three row group individually?....

The ASAP Utilities Add-in has a function that will do this. You can download it from

http://www.asap-utilities.com/

and save it as an add-in

If you highlight your range and select the Columns/Rows....insert empty rows (twice), you will get the desired result.

HTH
 
Upvote 0
This should do it:

Code:
Sub Test()
    Dim x As Long
    Application.ScreenUpdating = False
    For x = Range("A65536").End(xlUp).Row To 1 Step -1
        Cells(x, 1).EntireRow.Resize(3).Insert
    Next x
    Application.ScreenUpdating = True
End Sub

It does it from the last used cell in column A upwards.
 
Upvote 0

Forum statistics

Threads
1,213,524
Messages
6,114,117
Members
448,549
Latest member
brianhfield

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