VBA to save file instead of .GetSaveAsFilename

Freedox

New Member
Joined
Mar 11, 2015
Messages
39
Heya,

Does anyone know how to change instead of prompting to save the file as to just save it without prompt to a location that is set in "ThisFile"?

Code I have now:
Code:
FileName = Application.GetSaveAsFilename(InitialFileName:=ThisFile, filefilter:="XML (*.xml),*.xml")

Code for ThisFile:

Code:
ThisFile = xmlPath & Worksheets("XML").Name & "_" & Format(Date1, "ddmmyyyy-hhmmss") & ".xml"

So in other words in needs to just save file to xmlPath instead of promtimg eith .GetSaveAsFilename

Chers!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
How about
Code:
ThisWorkbook.SaveAs thisfile
 
Upvote 0
In that case, could you please show us your entire code?
It's very difficult to help without all the info
 
Upvote 0

Forum statistics

Threads
1,216,031
Messages
6,128,420
Members
449,449
Latest member
Quiet_Nectarine_

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top