无效的外部过程
我想在字符串“path”中存储一个路径,该路径可用于整个工作簿。
当我按照以下方式执行此操作时,出现错误: “无效的外部过程”
这是我尝试在(常规)(声明)中声明路径的方式,
Option Explicit
Dim path As String
path = "\\sharedDrive\TestFolder\Test_PDF\"
我收到错误:
"\\sharedDrive\TestFolder\Test_PDF\"
I want to store a path in string "path" which would be available for the whole workbook.
When I do it the following way, I get an error:
"invalid outside procedure"
Here is how I am trying to declare the path in (General) (Declaration)
Option Explicit
Dim path As String
path = "\\sharedDrive\TestFolder\Test_PDF\"
I get the error at:
"\\sharedDrive\TestFolder\Test_PDF\"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将变量放入模块中,如下所示:
然后,在 Workbook_Open 例程中:
要在任何位置访问它,请使用
yourModule.path
。Put the variable in a module instead, like this:
Then, in your Workbook_Open routine:
To access it anywhere, use
yourModule.path
.