Reputation: 60841
i have this:
Application.Run ("'L:\database\lcmsmacro\macro1.xlsm'!macro_name")
why should i use the single quotes? does it not recognize the backslash?
Upvotes: 2
Views: 203
Reputation: 78181
I believe it's for consistency.
Single quotes are necessary when the path contains spaces ot exclamation marks, so to make things more consistent and simple, the quotes are required every time.
Upvotes: 3