Forum Discussion
Formulas
- 9 years ago
Hi Milozebre,
You can create a calculated table to list all distinct ID, Team values:
Table = SUMMARIZE('Table1',Table1[ID],'Table1'[Team],"Value",MAX('Table1'[NUMBER]))
Then drag that [ID] and [Team] to matrix Row group, [Value] to Values.
Best Regards,
Qiuyun Yu - 9 years ago
Another option is to use the Query Editors remove duplicates function. Just select the 4 columns and click remove duplicates
Hi Milozebre,
You can create a calculated table to list all distinct ID, Team values:
Table = SUMMARIZE('Table1',Table1[ID],'Table1'[Team],"Value",MAX('Table1'[NUMBER]))
Then drag that [ID] and [Team] to matrix Row group, [Value] to Values.
Best Regards,
Qiuyun Yu
Hi v-qiuyu-msft
First thank you for your reply.
This is exactly the result I was hoping for.
I hadn't thought of SUMMARIZE :(
I realize that I still have some way to go :)
A big thank-you