I have a problem that I am sure is probably pretty basic, but my brain has quit functioning, and I can't get past this. I have a table with two columns. An ID column and a Service column. Shown below:
As you can see, the ID column has duplicate values, I would like to combine the duplicates in the ID column and then concatenate the Service column for each row as shown below:
ANy help would be GREATLY appreciated!!!
In the query editor go to Group by
This throws an error. Now edit the code line above from
= Table.Group(#"Changed Type", {"Column1"}, {{"Column3", each List.Sum([Column2]), type nullable text}})
to
= Table.Group(#"Changed Type", {"Column1"}, {{"Column3", each Text.Combine([Column2], ", "), type nullable text}})
and you will get: