Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 22 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |