Forum Discussion

TRISTANCARY's avatar
TRISTANCARY
New Member
5 years ago
Solved

Reporting on delimiter on single chart

Hi everyone, I am working on a project in Power BI where I am taking an excel document where people picked their favorite applications in office but it could have been multiple choice. An example wo...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi TRISTANCARY 

    I created a sample ,maybe you can refer to it .

    Original Date:

    (1)Use Split Column in Query Editor , to divide a column of values into multiple columns of single values according to the separator, like this

    (2)Return to desktop view ,and create measures to count the rows for each part .

    Word = COUNTROWS(FILTER('Table','Table'[Favorite Part of Office.1]="Word" || 'Table'[Favorite Part of Office.2]="Word" || 'Table'[Favorite Part of Office.3]="Word"))
    Outlook = COUNTROWS(FILTER('Table','Table'[Favorite Part of Office.1]="Outlook" || 'Table'[Favorite Part of Office.2]="Outlook" || 'Table'[Favorite Part of Office.3]="Outlook"))
    Excel = COUNTROWS(FILTER('Table','Table'[Favorite Part of Office.1]="Excel" || 'Table'[Favorite Part of Office.2]="Excel" || 'Table'[Favorite Part of Office.3]="Excel"))

    The results are as shown:

    (3)Add a pie chart ,in the visual ,put the measures in Values .

    I have attached my pbix file ,you can have a look .

     

    Best Regards

    Community Support Team _ Ailsa Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.