Hi Guys,
I need a vba code to "save as" a workbook.xlsm into .xlsx.
I used the following code but its not working
Cell C3 has the folder path which is linked to textbox1 as defined by the user. Cell C2 has the file name which is linked to textbox2 as defined by the user. I also want to include "TodaysDate" at the end of the filename.![]()
ActiveWorkbook.SaveAs FileName:=Workbooks("Test1.xlsm").Sheets("hello").Range("C3").Value & "\" & Workbooks("Test1.xlsm").Sheets("hello").Range("C2").Value & "_TestSave.xls" _ , FileFormat:=xlExcel8, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False
Thanks.
Bookmarks