Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default how to insert a row at regular intervals of row

Hi, I need to insert a row after a regular intervals of 180 rows in a big
data file. How can I enter?
  #2   Report Post  
Posted to microsoft.public.excel.programming
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
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Inserting a Row Range at regular intervals [email protected] Excel Programming 1 April 3rd 07 05:58 PM
5 minutes intervals april Excel Worksheet Functions 2 October 24th 06 12:32 AM
How to trigger a macro at regular intervals? ÉH Excel Programming 3 January 6th 06 09:10 PM
Time intervals below 1 second. Derek[_6_] Excel Programming 2 December 27th 03 07:30 PM
Time Between 2 intervals Neil Excel Programming 2 November 13th 03 03:45 PM


All times are GMT +1. The time now is 06:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"