Thanks Gollem
Will give that a go....however could you or anyone tell me why I'm getting a 'runtime error 1004' for the below? IT has a problem with 'Rows("1").Select' , I've also tried Rows("1:1").Select, but no joy. Apologies but I only have a basic understandering.
Thanks
Bertie
Private Sub CommandButton1_Click()
Range("A1:N37").Select
Selection.PrintOut Copies:=1, Collate:=True
ActiveWindow.ScrollRow = 1
Range("A1").Select
Sheets("Delivery Data").Select
Rows("1").Select
Selection.ClearContents
Rows("2").Select
Selection.Copy
Rows("1").Select
ActiveSheet.Paste
Rows("2").Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Range("A1").Select
Sheets("Delivery Note").Select
End Sub