Sub keith6292()
Application.ScreenUpdating = False
LastRow = Cells(Rows.Count, "AI").End(xlUp).Row
OpenRow = LastRow + 1
i = 2
Do
If OpenRow > 23 Then
Range("AI" & OpenRow - 1 & ":AM" & OpenRow - 1).Copy
Range("AI" & OpenRow & ":AM" & OpenRow).PasteSpecial Paste:=xlPasteFormats
Application.CutCopyMode = False
End If
Range("AI" & OpenRow).Value = Range("M4").Value
Range("AJ" & OpenRow).Value = Cells(7, i).Value
Range("AK" & OpenRow).Value = Range("X2").Value
Range("AL" & OpenRow).Value = Cells(33, i).Value
Range("AM" & OpenRow).Value = Cells(33, i + 1).Value
OpenRow = OpenRow + 1
i = i + 2
Loop While Cells(7, i) <> ""
Application.ScreenUpdating = True
End Sub
Bookmarks