首页 > 解决方案 > 如何更正错误找不到可安装的 ISAM VBA

问题描述

我正在阅读有关此主题的信息,但此问题仍在继续,表查询是正确的,但在 .ConnectionString 之后的 .open 步骤中,出现错误“找不到可安装的 ISAM”。

VBA中的代码:

With cnt
    .ConnectionString = _
    "Provider = Microsoft.ACE.OLEDB.12.0;WSS;IMEX=0;RetrieveIds=Yes;DATABASE=https://sites.com/sites;LIST={endereco_da_tabela_no_SharePoint};"
    .Open
End With

添加了库:Microsoft ActiveX Data Objects 2.8 Library 和 Microsoft ActiveX Data Objects Recordset 2.8 Library

我想知道如何修复这个错误。我需要任何授权才能通过 VBA 访问共享点吗?感谢!

标签: excelvbasharepoint

解决方案


推荐阅读