Can someone please show me a way of copying a file from one folder to another using vba but with a condition to say if file already exists do not overwrite?
here is my code:
If Target.Column = Range("BL1").Column And Target.Row > 14 Then
FileCopy "\\UKSH000-FILE06\purchasing\New_Supplier_Set_Ups_&_Audits\assets\audit.xls", "\\UKSH000-FILE06\purchasing\New_Supplier_Set_Ups_&_Audits\ATTACHMENTS\" & Range("B" & ActiveCell.Row) & "\audit.xls"
End If