Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

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 looks a little like these columns below.

 

Name: Employee ID, Award reasoning / comments / value etc.

Jim     , 1                  ,

Phil    , 2                  ,

Greg  , 3                  ,

Jim     ,1                   ,

etc.

 

On a visual I want to show the count of how many employees have been awarded once, twice, three, etc. times. Help much appreciated!

 

 

  • Hi Anonymous,

     

    I would suggest you create a calculated table. One stone two birds.

    Table =
    SUMMARIZE ( 'Table1', 'Table1'[Name], "times", COUNT ( Table1[Name] ) )
    

    Display_multiple_repeat_data_values_as_a_count_in_a_visual

     

    Best Regards,

    Dale

3 Replies