The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Mobile | 2180 | 79% |
Online | 2643 | 96% |
Outdoor | 1275 | 46% |
1677 | 61% | |
Radio | 839 | 30% |
TV | 1123 | 41% |
Thanks
Solved! Go to Solution.
Hey @shekharlko23 ,
i created this measure:
Measure =
IF(
HASONEVALUE('Table'[Category])
, DIVIDE(SUM('Table'[Count]) , 2757)
, BLANK()
)
This allows to create this table visual ...
... 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
Hey @shekharlko23 ,
i created this measure:
Measure =
IF(
HASONEVALUE('Table'[Category])
, DIVIDE(SUM('Table'[Count]) , 2757)
, BLANK()
)
This allows to create this table visual ...
... 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
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!
User | Count |
---|---|
86 | |
84 | |
36 | |
34 | |
34 |
User | Count |
---|---|
94 | |
79 | |
65 | |
55 | |
52 |