How to save an excel doc in several folders with one click?
R Ron de Bruin Jan 30, 2005 #2 Hi geo You can use SaveCopyAs, see the Excel help for more information. Sub test() ActiveWorkbook.SaveCopyAs "C:\ron.xls" ActiveWorkbook.SaveCopyAs "C:\Data\ron.xls" End Sub
Hi geo You can use SaveCopyAs, see the Excel help for more information. Sub test() ActiveWorkbook.SaveCopyAs "C:\ron.xls" ActiveWorkbook.SaveCopyAs "C:\Data\ron.xls" End Sub