D dsnema Mar 7, 2008 #1 Hi, I need to insert a row after a regular intervals of 180 rows in a big data file. How can I enter?
Hi, I need to insert a row after a regular intervals of 180 rows in a big data file. How can I enter?
G Gary''s Student Mar 7, 2008 #2 Sub insert_them() For i = 181 To 999 Step 180 Rows(i).Insert Shift:=xlDown Next End Sub