大家好,
我需要的是复制表格式1400中的相同合并。问题是源表是位于不同文件夹中的两个CSV文件。在导入之前,我成功地用M语言进行了合并。
这是我的桌子
所以,正如你所看到的,它一直工作到那里。但一旦我点击import,就会出现一条错误消息
The name 'Table2' wasn't recognized. Make sure it's spelled correctly
所以它一定和合并后的M语言有关,但对我来说是正确的。这是M语言
let
Source = Table.NestedJoin(Table2,{"Name"},Table1,{"Name"},"NewColumn",JoinKind.LeftOuter),
#"Expanded NewColumn" = Table.ExpandTableColumn(Source, "NewColumn", {"Name", "Age", "Country"}, {"NewColumn.Name", "NewColumn.Age", "NewColumn.Country"}),
#"Removed Columns" = Table.RemoveColumns(#"Expanded NewColumn",{"NewColumn.Name"}),
#"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"NewColumn.Age", "Age"}, {"NewColumn.Country", "Country"}}),
#"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Age", Int64.Type}})
in
#"Changed Type"
实际上我有点迷路了,因为对我来说m语言很好。你知道怎么解决吗?