如何使用VBA从网络位置或共享文件夹中打开MAC中的Excel文件?

时间:2016-02-21 02:11:40

标签: excel macos vba excel-vba excel-vba-mac

我在PC和MAC上都使用excel 2016 VBA。我知道如何从本地驱动器打开文件,我也可以从网络位置打开pc中的文件,但我无法从MAC打开文件。

假设我的文件位置是:“\ 10.183.3.110 \ crm \ LOG_Do_not_open \ LOG.xlsx”

我的Windows代码是:

  

filename1 =“\\ 10.183.3.110 \ crm \ LOG_Do_not_open \ LOG.xlsx”

     

Workbooks.Open fileName:= filename1

对于MAC我的代码是:

  

filename1 =“//10.183.3.110/crm/LOG_Do_not_open/LOG.xlsx”

     

Workbooks.Open fileName:= filename1

我的Windows代码工作正常,但MAC无法打开文件。 MAC打开文件的正确代码是什么?

0 个答案:

没有答案