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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
shekharlko23
Regular Visitor

Issue with achieving percentage of multi select variable post un-pivot.

Hi, I have data for N= 2757 respondents and have multi response answer. After unpivot of data I'm able to achieve below counts but not able to achieve below mentioned target percentages. as percentages coming up in chart is summing upto 100% . 

 

Each percentage is calculated by each Count/2757. Please suggest how to achieve below %'s

 

 Category Count  Percentage

Mobile218079%
Online264396%
Outdoor127546%
Print167761%
Radio83930%
TV112341%

 

Thanks

 

 

 

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey @shekharlko23 ,

 

i created this measure:

Measure = 
IF(
    HASONEVALUE('Table'[Category])
    , DIVIDE(SUM('Table'[Count]) , 2757)
    , BLANK()
)

This allows to create this table visual ...

image.png

... but I have  to admit that I do not have an idea what you are looking for.

 

If you are looking for a certain visual, please attach an image, just make a sketch that allows to understand what you want.

 

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

2 REPLIES 2
TomMartens
Super User
Super User

Hey @shekharlko23 ,

 

i created this measure:

Measure = 
IF(
    HASONEVALUE('Table'[Category])
    , DIVIDE(SUM('Table'[Count]) , 2757)
    , BLANK()
)

This allows to create this table visual ...

image.png

... but I have  to admit that I do not have an idea what you are looking for.

 

If you are looking for a certain visual, please attach an image, just make a sketch that allows to understand what you want.

 

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi @TomMartens , Thanks for your help.

 

I was able to achieve these % within clustered column chart, is this correct chart to represent multi select %'s?

Also how can I add % sign to these numbers in measure?

Thanks!

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors