ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Saving a workbook to a specific directory (https://www.excelbanter.com/excel-programming/383541-saving-workbook-specific-directory.html)

Chris Hankin[_4_]

Saving a workbook to a specific directory
 
Hello,

Could someone please help amend my macro code so that when it is run,
the SaveAs window pops up and automatically selects the desired
directory location in my macro?

Sub Save_to_Dir()
'
'Save to Dir
'

Dim MyPath As String


Application.ScreenUpdating = False


MyPath = "G:\WLMAEWCSPO\LMU\LOGISTICS PREPAREDNESS SYSTEMS\LOGISTICS
SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE DEMAND REQUESTS\"

MyPath = Application.GetSaveAsFilename


End Sub

Any help would be greatly appreciated.

Kind regards,

Chris.



*** Sent via Developersdex http://www.developersdex.com ***

Vergel Adriano[_2_]

Saving a workbook to a specific directory
 
Change this line:

MyPath = Application.GetSaveAsFilename

to this:

MyPath = Application.GetSaveAsFilename(MyPath)

"Chris Hankin" wrote in message
...
Hello,

Could someone please help amend my macro code so that when it is run,
the SaveAs window pops up and automatically selects the desired
directory location in my macro?

Sub Save_to_Dir()
'
'Save to Dir
'

Dim MyPath As String


Application.ScreenUpdating = False


MyPath = "G:\WLMAEWCSPO\LMU\LOGISTICS PREPAREDNESS SYSTEMS\LOGISTICS
SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE DEMAND REQUESTS\"

MyPath = Application.GetSaveAsFilename


End Sub

Any help would be greatly appreciated.

Kind regards,

Chris.



*** Sent via Developersdex http://www.developersdex.com ***




----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----

Chris Hankin[_4_]

Saving a workbook to a specific directory
 

Thanks Vergel for your help.

I am still having difficulty saving my workbook to the desired directory
location. I changed the macro code to:

Sub Save_to_Dir()
'
'Save to Dir
'

Dim MyPath As String


Application.ScreenUpdating = False


MyPath = "G:\WLMAEWCSPO\LMU\LOGISTICS PREPAREDNESS SYSTEMS\LOGISTICS
SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE DEMAND REQUESTS\"

MyPath = Application.GetSaveAsFilename("G:\WLMAEWCSPO\LMU\L OGISTICS
PREPAREDNESS SYSTEMS\LOGISTICS SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE
DEMAND REQUESTS\AEWCSPO Online Demand Request")

End Sub

Could you please review the changed macro code and advise where I am
going wrong?

Kind regards,

Chris.


*** Sent via Developersdex http://www.developersdex.com ***

Vergel Adriano[_2_]

Saving a workbook to a specific directory
 
Chris,

The call to GetSaveAsFilename will only display the "Save As" dialog and
allow you to get a filename from the user. It will not save the file.. To
do the save as, you can add these lines of code after the call to
GetSaveAsFilename

If MyPath < "False" Then
ThisWorkbook.SaveAs MyPath
End If

Or, if you want to save the current active workbook, you can use

If MyPath < "False" Then
ActiveWorkbook.SaveAs MyPath
End If




"Chris Hankin" wrote in message
...

Thanks Vergel for your help.

I am still having difficulty saving my workbook to the desired directory
location. I changed the macro code to:

Sub Save_to_Dir()
'
'Save to Dir
'

Dim MyPath As String


Application.ScreenUpdating = False


MyPath = "G:\WLMAEWCSPO\LMU\LOGISTICS PREPAREDNESS SYSTEMS\LOGISTICS
SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE DEMAND REQUESTS\"

MyPath = Application.GetSaveAsFilename("G:\WLMAEWCSPO\LMU\L OGISTICS
PREPAREDNESS SYSTEMS\LOGISTICS SYSTEMS\LOGSYS3\LOCAL PURCHASE\ON-LINE
DEMAND REQUESTS\AEWCSPO Online Demand Request")

End Sub

Could you please review the changed macro code and advise where I am
going wrong?

Kind regards,

Chris.


*** Sent via Developersdex http://www.developersdex.com ***




----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----

Chris Hankin[_4_]

Saving a workbook to a specific directory
 
Thanks again Vergel,

I used the following code to fix my macro. It now works great.

If MyPath < "False" Then
ActiveWorkbook.SaveAs MyPath
End If

Cheers,

Chris.



*** Sent via Developersdex http://www.developersdex.com ***


All times are GMT +1. The time now is 07:19 PM.

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