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.
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"