THRASHER69
Board Regular
- Joined
- Mar 29, 2012
- Messages
- 200
I am trying to make my workbook copy the saved file from one network location to another network location when I close the file. I have the code below under ThisWorkbook but it does not work. What am I missing?
Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
FileCopy "M;\msapps\excel\Warehouse Planning\Office 2010 Sheets (Working)\Open Order Report.xlsm", "T:\WareHouse Planning\Open Order Report.xlsm"
End Sub