Forum Discussion
Anonymous
7 years agoNot applicable
Display multiple repeat data values as a count in a visual
Hi, I am quite new to Power BI and am having a real head-scratcher at the moment trying to get a visual to illustrate how may times a list of employees have been given an award. The data-set ...
v-jiascu-msft
7 years agoMicrosoft Employee
Hi Anonymous,
I would suggest you create a calculated table. One stone two birds.
Table = SUMMARIZE ( 'Table1', 'Table1'[Name], "times", COUNT ( Table1[Name] ) )
Best Regards,
Dale
Anonymous
7 years agoNot applicable
Thank you!