Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a macro that inserts lines and copy a header when ever the value in B
Changes. I want to make it a bit easier the 26 lines must be inserted and range B2:K25 coppied at every page break. Thanks Public Sub Deilv2() Dim LastRow As Long Dim row_index As Long Dim rng As Range Set rng = Range("B2:K25") Application.ScreenUpdating = False LastRow = ActiveSheet.Cells(Rows.Count, "b").End(xlUp).Row For row_index = LastRow - 1 To 26 Step -1 If Cells(row_index, "B").Value < _ Cells(row_index + 1, "B").Value Then Cells(row_index + 1, "B").Resize(26).EntireRow. _ insert Shift:=xlDown rng.Copy Destination:=Cells(row_index + 1, "B").Offset(2) End If Next Application.ScreenUpdating = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Page scaling & Page break preview prob | Excel Discussion (Misc queries) | |||
Keyboard Shortcut for Inserting a Page Break | Excel Discussion (Misc queries) | |||
Can't delete a page break | Excel Discussion (Misc queries) | |||
adding a new page break to an existing page break | Excel Discussion (Misc queries) | |||
content does not stay in page break | Excel Worksheet Functions |