Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I am looking for a pyramid funnel chart which shows both Male & Female data in the same horizontal bar with appropriate split of % or numbers. below is the sample chart & the data table.
Table:
Employee ID | Gender | Level |
1001 | Female | 7 |
1002 | Female | 8 |
1003 | Male | 8 |
1004 | Female | 8 |
1005 | Female | 7 |
1006 | Male | 7 |
1007 | Male | 8 |
1008 | Female | 7 |
1009 | Male | 7 |
1010 | Female | 8 |
1011 | Male | 8 |
Solved! Go to Solution.
hi @Vishal7012
not sure if i fully get you, tried to make it with standard native stacked bar chart.
1) enrich you data as:
Level2 = IF([Gender]="Female", -[Level], [Level])
2) write two measure like:
Female = CALCULATE(SUM(TableName[Level2]), TableName[Gender]="Female")
Male = CALCULATE(SUM(TableName[Level2]), TableName[Gender]="Male")
3) plot the measures with department column like this:
hi @Vishal7012
not sure if i fully get you, tried to make it with standard native stacked bar chart.
1) enrich you data as:
Level2 = IF([Gender]="Female", -[Level], [Level])
2) write two measure like:
Female = CALCULATE(SUM(TableName[Level2]), TableName[Gender]="Female")
Male = CALCULATE(SUM(TableName[Level2]), TableName[Gender]="Male")
3) plot the measures with department column like this:
Hi @Vishal7012 ,
In the given shape, AFAIK, it is not possible to do with Power BI native visuals. You may want to try it with custom visuals on app source.
After some calculations, One such visual you may utilise: https://appsource.microsoft.com/en-us/product/power-bi-visuals/yavdaanalyticspvtltd1628223732998.pop...
Thanks,
Radhey
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
17 |
User | Count |
---|---|
34 | |
21 | |
19 | |
18 | |
10 |