Workbook.SaveAs() to different folder in Office 20

2019-08-27 20:01发布

问题:

How to save xls to another folder?

When I use "/" in save path it replaces then with ":". When I try to use "\" it saves the file with "\" in file name.

回答1:

Use the Application.PathSeparator property and as an added bonus it'll be platform agnostic.

myPath = "myDirectory" & Application.PathSeparator & "mySubDirectory" & Application.PathSeparator & "myFileName"