Forum Discussion
Need help with creating table
- 2 years ago
Here's one possible solution:
I first go into PowerQuery and merge the table with itself.
And then I expand the table, but I only need the Competition and Name columns:
Lastly, I have a query to remove the rows where it's the same person playing (i.e in row 1 - name1 is playing with name1)
The query is something like:
= Table.SelectRows(#"Expanded Changed Type", each ([competition] = [competition.1] and [name] <> [name.1]))
I hope this helps.
Here's one possible solution:
I first go into PowerQuery and merge the table with itself.
And then I expand the table, but I only need the Competition and Name columns:
Lastly, I have a query to remove the rows where it's the same person playing (i.e in row 1 - name1 is playing with name1)
The query is something like:
= Table.SelectRows(#"Expanded Changed Type", each ([competition] = [competition.1] and [name] <> [name.1]))
I hope this helps.
- PowerK2 years agoFrequent Visitor
Thanks! I had to modify a bit to get it exactly what I wanted, but this helped a lot!