let
源 = Excel.CurrentWorkbook(){[Name="表1"]}[Content],
更改的类型 = Table.TransformColumnTypes(源,{{"Type", type text}, {"Value",type text}}),
分组的行 = Table.Group(更改的类型, {"Type"}, {{"计数", each _[Value]}}),
Output = Table.FromColumns(分组的行[计数], 分组的行[Type])
in
Output
网友评论