ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Prompt for Save Path - Use Cell Content for File Name (https://www.excelbanter.com/excel-programming/416843-prompt-save-path-use-cell-content-file-name.html)

Chris T-M

Prompt for Save Path - Use Cell Content for File Name
 
Summary: User selected Path + File Name from a Cell to generate a 'Save
Path/file name'

Details:
I need to prompt the user for a Save To location. I want them to be
presented with a browser box, not a cell where they have to type in a path
manually.

I need to take that path and a pre-generated file name and save.

I'm currently generating the file name in a cell by using Concatenate...
Then saving...
ActiveWorkbook.SaveAs Filename:=Range("BZ21").Value

If I pre-set the path this works fine. I just don't want to pre-set the path.

Per Jessen

Prompt for Save Path - Use Cell Content for File Name
 
Hi

Maybe this is what you are looking for:

MyFile = Range("A1").Value
MyPath = Application.GetSaveAsFilename(initialfilename:=MyF ile, _
Title:="Select path")

Regards,
Per

"Chris T-M" skrev i meddelelsen
...
Summary: User selected Path + File Name from a Cell to generate a 'Save
Path/file name'

Details:
I need to prompt the user for a Save To location. I want them to be
presented with a browser box, not a cell where they have to type in a path
manually.

I need to take that path and a pre-generated file name and save.

I'm currently generating the file name in a cell by using Concatenate...
Then saving...
ActiveWorkbook.SaveAs Filename:=Range("BZ21").Value

If I pre-set the path this works fine. I just don't want to pre-set the
path.




All times are GMT +1. The time now is 10:35 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com