使用函数转换 table 列
Transforming a table column using a function
我想 运行 在我的 table 中包含 urls(excel 文件下载)的列中使用 Web.Contents
函数。我希望通过使用 Web.Contents
将此 url 列转换为 Excel workbooks
的列,然后使用 Excel.Workbook
将 Web 内容转换为 excel 工作簿。我不想添加 new/custom 列。
问题是当我尝试使用下面的代码执行此操作时,出现表达式错误。我不确定我做错了什么,我怀疑我可能在 Web.Contents
函数中错误地引用了 urls。
let
TransformedTable = Table.TransformColumns (Table, {"Urls", each Web.Contents([Urls])})
in
TransformedTable
试试这个代码:
= Table.TransformColumns (Table, {"Urls", each Web.Contents(_)})
我想 运行 在我的 table 中包含 urls(excel 文件下载)的列中使用 Web.Contents
函数。我希望通过使用 Web.Contents
将此 url 列转换为 Excel workbooks
的列,然后使用 Excel.Workbook
将 Web 内容转换为 excel 工作簿。我不想添加 new/custom 列。
问题是当我尝试使用下面的代码执行此操作时,出现表达式错误。我不确定我做错了什么,我怀疑我可能在 Web.Contents
函数中错误地引用了 urls。
let
TransformedTable = Table.TransformColumns (Table, {"Urls", each Web.Contents([Urls])})
in
TransformedTable
试试这个代码:
= Table.TransformColumns (Table, {"Urls", each Web.Contents(_)})