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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.