Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone,
I have some data around complaints from users. Their complaints are sorted into categories, but one complaint can be assigned multiple categories. These categories are stored in a column and are seperated by a comma if there's more than 1. It looks like this:
| id | category |
| 1 | Technical |
| 2 | Technical,Guidance |
| 3 | Customer Service |
| 4 | Guidance |
| 5 | Technical |
| 6 | Technical |
| 7 | Customer Service,Technical |
What I want to do is to be able to create a slicer where the user can select any of those categories and filter to the relevant id, but I don't want combined categories like "Technical,Guidance".
There's a great solution in this post about how to achieve this, but my problem is that I also want to count the volume of responses for each category. This would mean I could make a line or bar chart to show how the proportion of complaints for each category has changed over time and the user could click on a cateogry to filter to the relevant id's in another visual.
I've added some sample data here.
Any help is much appreciated!
Solved! Go to Solution.
@Anonymous,
One option is to split into rows in Power Query:
Result:
Proud to be a Super User!
@Anonymous,
One option is to split into rows in Power Query:
Result:
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 102 | |
| 39 | |
| 29 | |
| 29 |