I am looking to write a macro that will save a file to the directory of the user's choosing, but the filename is provided in one of the cells. So far the code I have below works, but only saves in whatever the last directory accessed was. Any suggestions?
Code:
ActiveWorkbook.SaveAs Filename:= _
Sheet3.Range("F1").Value, _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
Last edited: