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.
Use the Application.PathSeparator property and as an added bonus it'll be platform agnostic.
myPath = "myDirectory" & Application.PathSeparator & "mySubDirectory" & Application.PathSeparator & "myFileName"
精彩评论