Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
JamesyW
New Member

Chart of count options contained in column vs those options

I've been using PowerBI for a few months and have created many reports.

However, this query has stumped me.

 

We have a list, generated by online form, that creates a text field based on  whichever options are selected.

i.e.

If the options were A, B and C.

Then the field might contain:

A

A, B

A, C

A, B, C

B

B, C

etc.

 

How can I create a chart which counts the instances of each option?

i.e. 

A = 4

B = 4

C = 3

from above.

 

For the curious... the field data is actually Injury Type from our Accident and Incident notifications.

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @JamesyW,

 

Fisrt, split the delimited column for multiple rows:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclSK1QGSOk5Q2hnGh7Ig4mBeLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"TextSplit" = Table.TransformColumns(#"Changed Type", {{"Column1", each Text.Split(_,",")}}),
    #"ExpList" = Table.ExpandListColumn(#"TextSplit","Column1")
in
   #"ExpList"

You will get this table:

7.PNG

 

Then, summarize this table.

Table4 =
SUMMARIZE ( Table3, Table3[Column1], "Total", COUNTA ( Table3[Column1] ) )

8.PNG

 

Thanks,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @JamesyW,

 

Fisrt, split the delimited column for multiple rows:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclSK1QGSOk5Q2hnGh7Ig4mBeLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"TextSplit" = Table.TransformColumns(#"Changed Type", {{"Column1", each Text.Split(_,",")}}),
    #"ExpList" = Table.ExpandListColumn(#"TextSplit","Column1")
in
   #"ExpList"

You will get this table:

7.PNG

 

Then, summarize this table.

Table4 =
SUMMARIZE ( Table3, Table3[Column1], "Total", COUNTA ( Table3[Column1] ) )

8.PNG

 

Thanks,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you Yuliana!

 

I'd never considered that... with a little tweaking I got it to work and give me exactly what I needed.

 

Thank you!!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.