Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
try this Sub insertrow() Dim LastRow As Long, x As Long LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row LastRow = LastRow - (LastRow Mod 10) + 1 For x = LastRow To 11 Step -10 Rows(x).Insert Next x End Sub Mike "aileen" wrote: Is it possible to insert a blank row every 10th row starting from row 11 and going until the last and variable row of data? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Insert blank rows | Excel Discussion (Misc queries) | |||
Text to Rows and then Insert Blank Rows | Excel Discussion (Misc queries) | |||
How do i insert blank rows between data that is thousands of rows | Excel Discussion (Misc queries) | |||
Insert Blank Rows | Excel Programming | |||
How do I insert blank rows between rows in completed worksheet? | Excel Discussion (Misc queries) |