Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi
I want to convert this to two rows:
So that it looks like this:
I've tried the usual 'group by' and pivoting, but I've got stuck!
I've also been experimenting with converting tables to lists and records..
Many thanks for looking.
Solved! Go to Solution.
Hi,
Use Table.Group with Text.Combine
= Table.Group(PrevStep, {"ID"}, {{"Values", each Text.Combine([Values],","), type text}})
Stéphane
Many thanks Stéphane!
That is really much appreciated - that saved the day 😊
Many thanks Stéphane!
That is really much appreciated - that saved the day 😊
Hi,
Use Table.Group with Text.Combine
= Table.Group(PrevStep, {"ID"}, {{"Values", each Text.Combine([Values],","), type text}})
Stéphane