Hi all, My First post, so forgive me if I dont give the Right information.
I am Trying to copy All The Data in Column H of my master Sheet to an Invoice Template that I have Created.
This Code:
Copies the Data correctly to Column A on the New Sheet, However, I need it to Start entering it on ROW 9 to avoid overwriting the Header of the Invoice. Any Ideas on what is wrong?
I am Trying to copy All The Data in Column H of my master Sheet to an Invoice Template that I have Created.
This Code:
Code:
Sheets(shorg).Columns("H:H").Copy Destination:=Sheets(shdes).Columns("A:A").Range([A9], Range("H" & Rows.Count).End(xlUp))