Good Evening all,
Could you please help, I am trying to setup a macro in excel that will save-as (using a cell's data for its title)This works as required but it saves to the default folder. I need to save it in another location, either by typing the path into the coding or preferably having the save as window where I can choose the end location.
The coding I have so far is:
Sub SaveAs()
ThisFile = Range("K5").Value
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
Cheers Jupops
Could you please help, I am trying to setup a macro in excel that will save-as (using a cell's data for its title)This works as required but it saves to the default folder. I need to save it in another location, either by typing the path into the coding or preferably having the save as window where I can choose the end location.
The coding I have so far is:
Sub SaveAs()
ThisFile = Range("K5").Value
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
Cheers Jupops