Forum Discussion
o59393
5 years agoPost Prodigy
How to combine only unique values for different columns
Hi
I have gone from
to
Would it be possible in the second image to include the Region and Country in separated columns?
I try the code:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Id"}, {{"Count", each Text.Combine(List.Distinct([Sub Region],[Region],[Country]),", "), type text}}),
#"Renamed Columns" = Table.RenameColumns(#"Grouped Rows",{{"Count", "Sub Region","Region","Country"}})
in
#"Renamed Columns"
But I get an error.
Is it possible to have this in M code?
Thanks.
- Anonymous5 years ago
Hi o59393
I think you probably want to do it
#"Grouped Rows" = Table.Group(#"Changed Type", {"ID"}, { {"Sub Region", each Text.Combine(List.Distinct([Sub Region]),", "), type text} ,{"Region", each Text.Combine(List.Distinct([Region]),", "), type text} ,{"Country", each Text.Combine(List.Distinct([Country]),", "), type text} }) in #"Grouped Rows"
2 Replies
- AnonymousNot applicable
Hi o59393
I think you probably want to do it
#"Grouped Rows" = Table.Group(#"Changed Type", {"ID"}, { {"Sub Region", each Text.Combine(List.Distinct([Sub Region]),", "), type text} ,{"Region", each Text.Combine(List.Distinct([Region]),", "), type text} ,{"Country", each Text.Combine(List.Distinct([Country]),", "), type text} }) in #"Grouped Rows" - o59393Post Prodigy
Thanks 🙂 Anonymous