Hi.
I’d like to have a button to save a copy of the current sheet as a seperate workbook, in a specified folder. The file name will have the name of the tab & the current month & year e.g. CNE0709.xls
We’re using a combination of Excel 2003 & 2007.
Here’s what using the record macro gave me;
Sheets(“CNE”).Select
Sheets(“CNE”).Copy
ChDir “F:ISO 18001Legal ComplianceCompliance Audits”
ActiveWorkbook.SaveAs Filename:= _
“F:ISO 18001Legal ComplianceCompliance AuditsCNE.xls”, FileFormat:= _
xlExcel8, Password:=””, WriteResPassword:=””, ReadOnlyRecommended:=False _
, CreateBackup:=False
TIA