How do I add a larger sized, blank every other row in a spread she

G

Guest

I have a spread sheet full of data. I need to incert a larger sized, blank
row in every other space? Macro possible. I have this macro:

Sub test()
Application.ScreenUpdating = False
Dim numRows As Integer
Dim R As Long
Dim rng As Range
numRows = 1
Set rng = ActiveSheet.UsedRange
For R = rng.Rows.count To 1 Step -1
rng.rows(R + 1). Resize(numrows).EntireRow.Insert
Next R
Application.ScreenUpdating = True

This will add the row, I just need it to be a larger size.

Thanks

Jim
 

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

Top