Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a worksheet that has over 300 entries in almost every row (no skips).
I need to insert 3 empty rows in b/w each filled row. Is there anyway to do so? Ex: row 1 row 2 row 3 I want: row 1 row 2 row 3 I have 3 spreadsheets to change, one is done and it took FOREVER due to having to manually enter 3 rows in b/w every filled row (that one had almost 400). I have Excel 2003. Help! Work Email: |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
A tad quicker.
Sub insert3rows() For i = Cells(Rows.Count, "a").End(xlUp).row To 2 Step -1 Rows(i).Resize(3).Insert Next i End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Ms. Oliver" <Ms. wrote in message ... I have a worksheet that has over 300 entries in almost every row (no skips). I need to insert 3 empty rows in b/w each filled row. Is there anyway to do so? Ex: row 1 row 2 row 3 I want: row 1 row 2 row 3 I have 3 spreadsheets to change, one is done and it took FOREVER due to having to manually enter 3 rows in b/w every filled row (that one had almost 400). I have Excel 2003. Help! Work Email: |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Inserting Blank rows after every row upto 2500 rows | Excel Worksheet Functions | |||
inserting rows automatically? | Excel Discussion (Misc queries) | |||
Automatically copying fomulae when Inserting rows | Excel Discussion (Misc queries) | |||
Automatically inserting rows | Excel Worksheet Functions | |||
Automatically inserting rows | Excel Worksheet Functions |