Hello,
I am looking to save a file with the file name and the date yesterday to a specified location. I was able to come up with this by searching a few threads.
My concern is, what would be the code to specify where the file is going to be saved? and where will I inject that to the code above? Many thanks in advance!
I am looking to save a file with the file name and the date yesterday to a specified location. I was able to come up with this by searching a few threads.
Code:
ActiveWorkbook.SaveAs Filename:= "myfile " & format(range("V1"),"mmddyy")
My concern is, what would be the code to specify where the file is going to be saved? and where will I inject that to the code above? Many thanks in advance!