Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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
User | Count |
---|---|
19 | |
18 | |
16 | |
13 | |
13 |
User | Count |
---|---|
9 | |
8 | |
8 | |
7 | |
6 |