Hi People
Quick question, I want to copy a list of number from one work sheet and paste them into another work sheet at the end of the list. I dont want the pasted values to overwrite anything in my column.
I currently have the following, it wants to paste the values at the top of my list:
Any help would be greatly appreciated.
Thank you
Danny
Quick question, I want to copy a list of number from one work sheet and paste them into another work sheet at the end of the list. I dont want the pasted values to overwrite anything in my column.
I currently have the following, it wants to paste the values at the top of my list:
Code:
ActiveSheet.Range("$A$3:$EJ$791").AutoFilter Field:=24, Criteria1:= _
"CON EMEA"
ActiveSheet.Range("$A$3:$EJ$791").AutoFilter Field:=9, Criteria1:="#N/A"
Range("O4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Sheets("Department_Project").Select
Sheets("Department_Project").Range("A724").End(xlUp).Offset(1, 0).PasteSpecial _
Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Any help would be greatly appreciated.
Thank you
Danny