Forum Discussion
Anon29
2 years agoHelper II
Group By - updated problem
Hi all, hoping someone can help. The data below is an example of one phone conversation and the order of the people talking is in order from first contact person being 411 to the last contact person...
- 2 years ago
Hi, Anon29 looks like you need to select min Talkorder withing each Talk ID and Name.
let Source = raw_data_table, group = Table.Group(Source, {"Name", "Talk ID"}, {{"all", each Table.Min(_, "Talkorder")}}), expand = Table.ExpandRecordColumn(group, "all", {"Date", "Talkorder"}) in expand
Anon29
2 years agoHelper II
Thanks everyone, looks like I gave the wrong data, but the solutions you have given me is correct for the data that I have.