Jul 29 2022 04:11 AM
Hello,
I am using a power query to group and aggregate columns of a table. After the power query, the aggregated columns contain duplicate values. For example one of the aggregated columns is ISO country code, so after aggregating the cells contain "UK, UK, FR, FR, FR, DE, DE" etc. Is there a step I can add to the power query to remove such duplicates?
Thanks!
Jul 29 2022 04:46 AM
Jul 29 2022 05:48 AM
@OliverScheurich Thanks for your reply! Unfortunately I don't think this will solve it. Below is a screenshot of the grouping - if two or more Channels feature the same country, then removing duplicates prior to grouping won't work...
Jul 29 2022 05:56 AM - edited Jul 29 2022 05:57 AM
SolutionAs variant you may aggregate ISO as sum, that will return an error, in formula bar will be something like this
Change in formula bar on that
Other words instead of List.Sum first List.Distinct to remove duplicates, on the top Text.Combine to have one string.
With that doesn't matter how many aggregations you have, you correct only specific one.
Jul 29 2022 06:25 AM
@SergeiBaklan this worked perfectly, thanks!
As a follow up question, is it possible to add a step to the power query to re-order the ISO codes alphabetically in each cell?
Jul 29 2022 08:16 AM
Aug 03 2022 01:25 AM
@OliverScheurich thank you! This also worked perfectly!
Jul 29 2022 05:56 AM - edited Jul 29 2022 05:57 AM
SolutionAs variant you may aggregate ISO as sum, that will return an error, in formula bar will be something like this
Change in formula bar on that
Other words instead of List.Sum first List.Distinct to remove duplicates, on the top Text.Combine to have one string.
With that doesn't matter how many aggregations you have, you correct only specific one.