I'm new to VBA and I'm facing some problems with the code below:
It just need to find all the cells with "Add" on column DE and paste the names which is on the left column DD to the last blank cell on column A. The macro runs ok until the paste line. I don't know if there is another way around it.
ActiveSheet.Range("$DD$16:$DE$200").AutoFilter Field:=109, Criteria1:="Add"
Range("DD16").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
'unfilter Macro
ActiveSheet.Range("$A$13:$DE$133").AutoFilter Field:=109
'Paste names marked as "Add"
Range("A14").Select
ActiveCell.End(xlDown).Offset(1, 0).Select
ActiveSheet.Paste