Hello,

I have this code in my macro:
Set folder = fso.GetFolder("L:\Me\MyFiles\")
And the macro runs fine, however, when I try to do this:
MyPath = “L:\Me\MyFiles”
PathToFolder = chr(34) &  MyPath  &  "\" & Chr(34)
Set folder = fso.GetFolder(PathToFolder)
Then I am getting a Run-time error “76”:
Path not found.

What is wrong here?


Thanks