我想添加一个基于两列的索引列。 我已经遵循以下策略但没有任何结果。
但是我无法获得所需的输出(见下文)。
任何帮助将不胜感激。
你不需要分组。只需按两列排序,缓冲,然后添加索引即可。
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Account", type text}, {"Quantity", Int64.Type}}),
#"Sorted Rows" = Table.AddIndexColumn( Table.Buffer( Table.Sort(#"Changed Type",{{"Account", Order.Ascending}, {"Quantity", Order.Ascending}})), "Index",1)
in
#"Sorted Rows"