我为以下问题检查了很多答案,但仍无法正常工作 我通过Excel powerquery处理DBF文件之一,在第二台PC上遇到了这个问题。
我正在尝试以下高级编辑器中的代码:
let
Source = OleDb.DataSource("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\Reports\;extended properties=dBASE IV", [Query="select * from [abcdefgh.dbf]"]),
in
Source
错误消息是:
DataSource.Error: OLE DB: Could not find installable ISAM. Details:
DataSourceKind=OleDb
DataSourcePath=data source=C:\Users\standard\Desktop\ThresholdKPI\;extended
properties="dBASE IV";provider=Microsoft.ACE.OLEDB.12.0
Message=Could not find installable ISAM.
ErrorCode=-2147467259
此代码有什么问题?