Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to insert rows after every 5 cells in a excel file that has data of
120 rows. I dont want to start inserting every single time. Is there a function to insert a rows in a file at an interval? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
Dim RowNdx As Long For RowNdx = 1 To 200 Step 6 Rows(RowNdx).Insert Next RowNdx -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "JVR" wrote in message ... I want to insert rows after every 5 cells in a excel file that has data of 120 rows. I don't want to start inserting every single time. Is there a function to insert a rows in a file at an interval? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi JVR,
Go to http://www.andrewsexceltips.com/my_utilities.htm and download the utillities. I got this tip this week from this discussion group and it is very helpful and it is free! When it is installed on your computer, just go to the Andrew's Utilities tool bar, then to the "sheet utilities" and select "show selection tools". There are many functions that can do the work! and much more. JS "JVR" wrote: I want to insert rows after every 5 cells in a excel file that has data of 120 rows. I dont want to start inserting every single time. Is there a function to insert a rows in a file at an interval? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Where do I write this code?
JS "Chip Pearson" wrote: Try Dim RowNdx As Long For RowNdx = 1 To 200 Step 6 Rows(RowNdx).Insert Next RowNdx -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "JVR" wrote in message ... I want to insert rows after every 5 cells in a excel file that has data of 120 rows. I don't want to start inserting every single time. Is there a function to insert a rows in a file at an interval? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
insert zeros in front of cells already filled with data. | Excel Discussion (Misc queries) | |||
Inserting a new line when external data changes | Excel Discussion (Misc queries) | |||
Entering Data in multiple cells on one sheet & having it auto upda | Excel Worksheet Functions | |||
Merger Two Data Sheet | Excel Discussion (Misc queries) | |||
populate cells with data from another sheet | Excel Worksheet Functions |