inserting a row every other row

Mark CU

New Member
Joined
Apr 25, 2002
Messages
14
I have a list of 500, each in a row. I want to insert a row above each row, so it would be a data row, a blank row, a data row, a blank row...

Thank you
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Insert a blank column to the left of your existing data. In this column number your rows 1-500. Copy these 1-500 values and paste them directly beneath the copied values. Sort your rows in ascending order based on the 1-500 values. Delete the inserted column.
 
Upvote 0
Thank you great idea,

but I need them ( the rows ) in the alphabetic order there are in now.

what would you suggest ?

thanks agian
 
Upvote 0
Macro Solution for you
Code:
Sub AddSpace()
    For Rw = 1 To 1000 Step 2
        Rows(Rw & ":" & Rw).Insert Shift:=xlDown
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,287
Members
448,562
Latest member
Flashbond

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