I use now the following macro in my worksheet:
With Sheets("missing_artikels")
.Range("A1:F" & .Cells(.Rows.Count, 1).End(xlUp).Row).Copy Sheets("Master").Range("A" & Rows.Count).End(xlUp).Offset(1)
End With
Instead of copy the data to the local file, i want copy the data to a external file on location I:\sales\Funnel\funnel.xls
in worksheet "funnel".
How can i combine this? Thanks.