Forum Discussion
jcastr02
1 year agoPost Prodigy
grouping by ID
hello please see the attachment current versus the expected result. How can I achieve this in Power Query within Power BI. Note that the column PR&A Leader.title
is a people picker columns I trie...
Ashish_Mathur
1 year agoSuper User
Hi,
This M code works
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Grouped Rows" = Table.Group(Source, {"ID"}, {{"Count", each Text.Combine([#"PR&A Leader.title"],","), type nullable text}})
in
#"Grouped Rows"
Hope this helps.