gpt4 book ai didi

excel - 在 Power Query 中参数化 SharePoint 网站上的 Excel 路径时出现无效的绝对路径错误

转载 作者:行者123 更新时间:2023-12-04 19:59:56 27 4
gpt4 key购买 nike

我有一个指向 SharePoint 网站上 Excel 文件的有效、有效的绝对路径(例如“https://.../Filename.xlsx”),用 表示“文件路径” .

我尝试从 导入一些信息“文件路径”通过电源查询。使用

let
Source = Excel.Workbook(Web.Contents("FilePath"), null, true),

工作正常。但是,如果我尝试参数化 “文件路径”将其放在名为 的 Excel 表的第一行中Source_Files 列中源文件在我的 Power Query 所在的同一个 Excel 文件中找到(我导入到 PowerQuery),我总是得到
DataFormat.Error: The supplied file path must be a valid absolute path.
Details:
FilePath

错误,我是否尝试以这种方式进行参数化:
let
Source = Excel.Workbook(File.Contents(Source_Files[Source file]{0}), null, true),

或者这样:
let    
FilePath = File.Contents(Source_Files[Source file]{0}),
Source = Excel.Workbook(Web.Contents(FilePath), null, true),

如何在 Power Query 中参数化 SharePoint 网站上的 Excel 文件?

最佳答案

我认为替换“FilePath”的语法是:
Text.From(Excel.CurrentWorkbook(){[Name="Source_Files"]}[Content]{0}[Source file])

关于excel - 在 Power Query 中参数化 SharePoint 网站上的 Excel 路径时出现无效的绝对路径错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36405114/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com