Good Morning,
I have a macro which takes an existing workbook, makes changes to said workbook and saves a copy of the workbook adding to the existing filename.
The code I currently have takes the existing workbook name including the filetype and then adds the following on the end " - Owner.xlsm"
Example:
Original Filename - "Test.xlsm"
Current New Filename - "Test.xlsm - Owner.xlsm"
Required New Filename "Test - Owner.xlsm
Current Code:
As always, any help, greatly appreciated.
Tom
I have a macro which takes an existing workbook, makes changes to said workbook and saves a copy of the workbook adding to the existing filename.
The code I currently have takes the existing workbook name including the filetype and then adds the following on the end " - Owner.xlsm"
Example:
Original Filename - "Test.xlsm"
Current New Filename - "Test.xlsm - Owner.xlsm"
Required New Filename "Test - Owner.xlsm
Current Code:
Code:
ActiveWorkbook.SaveAs FileName:=ActiveWorkbook.FullName & " - OWNER.xlsm"
As always, any help, greatly appreciated.
Tom