View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Amandar097 Amandar097 is offline
external usenet poster
 
Posts: 7
Default Macro to insert a row after every 4th row

Thanks Don - that's exactly what I needed :)

"Don Guillett" wrote:

try

Sub insertrowevery4throw()
For i = 4 To Cells(Rows.Count, "a").End(xlUp).Row Step 4
Rows(i).Insert
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Amandar097" wrote in message
...
I need a macro that will insert a blank row after every fourth row in my
spreadsheet.

Thanks!