在 Mac 上使用 VBA 打开新文件
我正在使用 Excel 2011 for Mac 并尝试打开一个新文件。
但是,即使文件存在,我仍然收到找不到文件的错误。我正在使用的代码如下:
Dim theFile As String
theFile = "/Users/Dev/Desktop/RCM/test.xls"
Workbooks.Open FileName:=theFile
有什么建议吗?
I am using Excel 2011 for Mac and trying to open a new file.
However, I keep getting an error that file not found even though the file is there. The code I am using is below:
Dim theFile As String
theFile = "/Users/Dev/Desktop/RCM/test.xls"
Workbooks.Open FileName:=theFile
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Mac 使用不同的路径分隔符:将“/”切换为“:”
Mac uses a different path separator: switch your "/" to ":"
建立开放线:
Make the open line: