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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Dexrend
Frequent Visitor

Counting words from list to make Bar Graph.

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:

Dexrend_0-1630498394854.png

Dexrend_1-1630498495750.png

Dexrend_2-1630498591113.png

 

 

2 ACCEPTED SOLUTIONS
v-xulin-mstf
Community Support
Community Support

Hi @Dexrend

 

Split column by ',':

vxulinmstf_0-1630917592508.png

Unpivot columns as:

vxulinmstf_1-1630917635656.pngvxulinmstf_2-1630917654033.pngvxulinmstf_3-1630917667842.png

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:

vxulinmstf_4-1630917818743.png

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!

 

View solution in original post

Dexrend
Frequent Visitor

Thanks! That is exalty what i needed.

View solution in original post

2 REPLIES 2
Dexrend
Frequent Visitor

Thanks! That is exalty what i needed.

v-xulin-mstf
Community Support
Community Support

Hi @Dexrend

 

Split column by ',':

vxulinmstf_0-1630917592508.png

Unpivot columns as:

vxulinmstf_1-1630917635656.pngvxulinmstf_2-1630917654033.pngvxulinmstf_3-1630917667842.png

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:

vxulinmstf_4-1630917818743.png

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!

 

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Top Solution Authors