Sub Anthony()
Sheets("sheet1").Select
Range("AL65536").End(xlUp).Offset(-7).Select
Selection.Resize(Selection.Rows.Count + 7).Select
Selection.Copy
Sheets("sheet2").Select
Range("AH8").Select
Selection.PasteSpecial Paste:=xlValues
End Sub
Except ...played around with some other vb and kinda got this to work
Code:Sub Anthony() Sheets("sheet1").Select Range("AL65536").End(xlUp).Offset(-7).Select Selection.Resize(Selection.Rows.Count + 7).Select Selection.Copy Sheets("sheet2").Select Range("AH8").Select Selection.PasteSpecial Paste:=xlValues End Sub
thanks though
Sheets("Sheet1").Range("AL" & Rows.Count).End(xlUp).Offset(-7).Resize(8).Copy Destination:=Sheets("Sheet2").Range("AH8")