Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 82 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |