Thread
:
Insert Rows in b/w
View Single Post
#
5
Posted to microsoft.public.excel.newusers
Don Guillett
external usenet poster
Posts: 10,124
Insert Rows in b/w
try this
Sub insertrows()
For i = Cells(Rows.Count, 1).End(xlUp).Row To 2 Step -1
Rows(i).Resize(4).Insert
Next i
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Ranjit kurian" wrote in message
...
Hi
I have a column with few number, i need a macro code which will insert 4
rows after every number
example:
Amount
1
2
3
4
5
Answer:
1
2
3
4
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett