Forum Discussion
Bar chart for categorical data count
I have a dataset like this:
| UserID | Roles |
| 01ffe0 | Read, Write, Approve |
| 4abb4 | Read |
| 6yhc82 | Approve, Write |
| 02efaf | Write |
| 1bcf5d | Read, Write |
How to display the count of users for each role (Read, Write, Approve) in a bar chart?
I created a "New Column" for each category as below:
| UserID | Roles | Read | Write | Approve |
| 01ffe0 | Read, Write, Approve | 1 | 1 | 1 |
| 4abb4 | Read | 1 | 0 | 0 |
| 6yhc82 | Approve, Write | 0 | 1 | 1 |
| 02efaf | Write | 0 | 1 | 0 |
| 1bcf5d | Read, Write | 1 | 1 | 0 |
I created a bar chart that displays the Sum of each of the last 3 columns, but it does not show their Y-axis label. I tried adding the column names to Y-axis but the visual splits-up, which I don't want to happen.
This table is imported using a SQL query and will be refreshed daily with new row items hence, need a robust solution.
Any suggestions on how to get it right?
ichavarria DataInsights Ahmedx
5 Replies
- ppm1
Solution Sage
Your best option is to split the 2nd column at the ", " and create a list, then expand that to new rows. You can then easily create your visual. Here's one way to do it in the query editor. To see how it works, just create a blank query, open the Advanced Editor and replace the text there with the M code below.
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjBMS0s1UNJRCkpNTNFRCC/KLEnVUXAsKCjKL0tVitWJVjJJTEoygSoAC5hVZiRbGAFFoKqgusByBkapaYlpQDmEkGFScpppCqoNSrGxAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [UserID = _t, Roles = _t]), #"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Split([Roles], ", ")), #"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom"), #"Removed Columns" = Table.RemoveColumns(#"Expanded Custom",{"Roles"}) in #"Removed Columns"Pat
- ichavarria
Solution Specialist
Hi asheet_s,
I support ppm1. This would work. Please give it a try and feel free to reach back if you need any additional help.
Best regards,
Isaac Chavarria
If this post helps, then please consider Accepting it as the solution and giving Kudos to help the other members find it more quickly- asheet_sFrequent Visitor
Hi ppm1 ichavarria
Thnaks for the repsonse. One question - Where to insert the table name?
If I have a table named [X_ROLE_CLASS], where should that name be placed?