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! Request now
I have a List of items that need to be counted and put into a bar graph in Power BI, but The data has some items combined in the same Excel Cell. How can i count the items from the list in the data and display them separately?
example:
Solved! Go to Solution.
Hi @Dexrend
Split column by ',':
Unpivot columns as:
Create List table:
List =
VALUES('Table'[Value])
Create measure as:
Measure =
CALCULATE(
COUNT('Table'[Value]),
FILTER(
'Table','Table'[Value]=MAX(List[Value])
)
)
Here is the outptu:
The demo is attached, please try it.
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Thanks! That is exalty what i needed.
Hi @Dexrend
Split column by ',':
Unpivot columns as:
Create List table:
List =
VALUES('Table'[Value])
Create measure as:
Measure =
CALCULATE(
COUNT('Table'[Value]),
FILTER(
'Table','Table'[Value]=MAX(List[Value])
)
)
Here is the outptu:
The demo is attached, please try it.
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 96 | |
| 70 | |
| 50 | |
| 42 | |
| 40 |