我们遇到的情况是,ADF 不会预览 Excel 电子表格中的实际数据。正如您所看到的,Excel电子表格中有数据,但是当我们预览时,预览中没有显示任何数据。
我们的数据集如下。您会注意到正在连接到 .xlsx 电子表格的位置。为了预览数据,我们插入sheetName作为参数,但什么也没有出现
转到数据集 Json 并检查范围选项,如下所示:
"typeProperties": {
"sheetName": {
"value": "@dataset().Sheet",
"type": "Expression"
},
"location": {
"type": "AzureBlobFSLocation",
"fileName": "second.xlsx",
"fileSystem": "dec20excels"
},
"firstRowAsHeader": true,
"Range": "A1:B1"
}
尽管范围被提到为“A1:B1”,但它显示如下:
预览时得到的数据如下:
将Json中的范围去掉,尝试预览数据,你会得到如下图的数据: