In a blank column, insert numbers from 1 to 24,000 I.e. if data is from
A2:F24001, then in G2:G24001, enter 1 to 24000. Now copy G2:G24001 and
paste in G24002. Thereafter you can sort the numbers in column G in
ascending order. This will insert one blank row after each row.
--
Regards,
Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
"Confused from Hertford" <Confused from Hert...@discussions.microsoft.com>
wrote in message news:E29222A2-25A1-464C...@microsoft.com...
If this post helps click Yes
---------------
Jacob Skaria
Then select all that data down to row 48000 and sort using the helper
column as your sort field. Then you can delete the helper column.
Hope this helps.
Pete
On Nov 30, 10:28 am, Confused from Hertford <Confused from
Sub RowInserter()
Set r = Cells(1, 1)
n = Cells(Rows.Count, 1).End(xlUp).Row
For i = n To 1 Step -1
Cells(i, 1).EntireRow.Insert
Next
End Sub
--
Gary''s Student - gsnu200909
This will make it very difficult to sort, filter, copy and other stuff.
If for appearance only, maybe just increase the row height to double?
Gord Dibben MS Excel MVP