gpt4 book ai didi

excel - 在 Powerquery 中删除重复项忽略了我已经对数据进行了排序(因此删除了错误的重复项)

转载 作者:行者123 更新时间:2023-12-04 10:28:09 34 4
gpt4 key购买 nike

我在 Excel 中的一个名为 Table1 的表中有这个(示例)数据。 :

| PC Item  | Priority |
|----------|----------|
| AN123169 | P3 |
| AN123169 | P1 |
| AN123169 | P1 |
| AN123169 | P1 |
| AN123169 | P3 |

在按优先顺序排序并根据 PC 项目删除重复项后,我希望保留 P1 记录。相反,我得到了 P3。

help file状态:

Removes all rows from a Power Query table, in the Query Editor, where the values in the selected columns duplicate earlier values.



我对此的理解是保留第一个记录并删除后续记录吗?
M我正在使用的代码是:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"PC Item", type text}, {"Priority", type text}}),
#"Sorted Rows" = Table.Sort(#"Changed Type",{{"PC Item", Order.Ascending}, {"Priority", Order.Ascending}}),
#"Removed Duplicates" = Table.Distinct(#"Sorted Rows", {"PC Item"})
in
#"Removed Duplicates"

之后 #"Sorted Rows"我有这张表,它是正确排序的:
| PC Item  | Priority |
|----------|----------|
| AN123169 | P1 |
| AN123169 | P1 |
| AN123169 | P1 |
| AN123169 | P3 |
| AN123169 | P3 |

之后 #"Removed Duplicates"我有:
| PC Item  | Priority |
|----------|----------|
| AN123169 | P3 |

当然我应该有一个P1记录?

我的第一个想法是反转排序,但有了这些原始数据,我得到了 P3作为唯一值返回:
| PC Item | Priority |
|---------|----------|
| AN310C4 | P3 |
| AN310C4 | P1 |
| AN310C4 | P1 |

有了这些原始数据,我得到 P1回来:
| PC Item | Priority |
|---------|----------|
| AN310C4 | P1 |
| AN310C4 | P1 |
| AN310C4 | P3 |

问题:

所以我想我的问题是 - 排序如何工作作为后续的 M代码似乎忽略了我已经对数据进行排序的事实?

最佳答案

使用Table.Buffer缓存中间查询结果并在删除重复项时避免查询折叠。

样本数据:

enter image description here

更新 M :

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"PC Item", type text}, {"Priority", type text}}),
#"Sorted Rows" = Table.Sort(#"Changed Type",{{"PC Item", Order.Ascending}, {"Priority", Order.Ascending}}),
#"Buffer Table" = Table.Buffer(#"Sorted Rows"),
#"Removed Duplicates" = Table.Distinct(#"Buffer Table", {"PC Item"})
in
#"Removed Duplicates"

结果:

enter image description here

找到的文档(很少) here .找到信息丰富的视频 here .

我找到了其他方法来“打破”查询折叠,使用删除表中的错误行或添加索引列(并删除它)。但是,缓冲区对我来说似乎很整洁。

关于excel - 在 Powerquery 中删除重复项忽略了我已经对数据进行了排序(因此删除了错误的重复项),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60545705/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com