使用Excel powerquery:
我有“索引”列(这是一个索引列):
我想添加一个新的列,一个自定义的索引。其行的值应与“索引”列+同一本书第2页中单元格A1的值相同。
尝试过
#"custom index" = Table.AddColumn(#"amount", "customindexo", each [index]+sheet2!A1)
也尝试过
#"custom index" = Table.AddColumn(#"amount", "customindexo", each [index]+ Excel.Workbook(File.Contents(GetValue("sheet2!A1"))))
没有成功。这些是我在powerquery中的第一步。经过数小时的研究,我无法做到这一点。
答案 0 :(得分:1)
为了将单元格值传递到查询编辑器as shown in this post,您需要命名单元格值(显示在“公式”标签下的“名称管理器”中)。
一旦单元被命名,您就可以引用它:
#"custom index" = Table.AddColumn(#"amount", "customindexo",
each [index] + Excel.CurrentWorkbook(){[Name=cellName]}[Content]{0}[Column1])