View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default how to insert a row at regular intervals of row

Sub insert_them()
For i = 181 To 999 Step 180
Rows(i).Insert Shift:=xlDown
Next
End Sub

--
Gary''s Student - gsnu200772