Maybe this would be a little easier.
Sub InsertRows()
Application.ScreenUpdating = False
Dim numRows As Integer
Dim r As Long
numRows = 2
For r = 2000 To 1 Step -1
ActiveSheet.Rows(r + 1).Resize(numRows).EntireRow.Insert
Next r
Application.ScreenUpdating = True
End Sub
First...create a backup copy of your original workbook.
Now...with your workbook open
To create a General Module, hit ALT + F11 to open the Visual Basic Editor.
Hit CRTL + R to open Project Explorer.
Find your workbook/project by name and select it.
Right-click and Insert>Module. Paste the code in there. Save the
workbook and hit ALT + Q to return to your workbook and worksheet you want
altered.
Run the macro by going to Tool>Macro>Macros.
You can also assign this macro to a button or a shortcut key combo
Gord Dibben MS Excel MVP
Norma,
I have a similar problem to Piper's. But this solution you gave is Greek to
me, as is the information in McRitchie's page for macros. Is there a simpler
way? Or can you translate this into "English?"
Gord Dibben MS Excel MVP