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

Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.

Reply
abukapsoun
Post Patron
Post Patron

Calculate Percentage of Gender

Hi,

 

I have a column of Gender, Male and Female. How can I create a measure to calculate the percentage of Female?

 

Thanks,

2 ACCEPTED SOLUTIONS
erik_tarnvik
Solution Specialist
Solution Specialist

It depends. If you simply want a percentage in a visual, you can create a measure 

Percentage = Countrows(YourTable)/Countrows(ALL(YourTable))

Create a visual with YourTable[Gender] in the first column and Percentage in the second (and format the number produced by Percentage appropriately) you will see the percentage of both Female and Male. In fact, you would see the percentage distribution of anything you put in that visual, not only gender...

 

If you truly want a measure that always give you the percentage of females in your table regardless of context:

PercentageFemale = COUNTROWS(FILTER(ALL(YourTable),YourTable[Gender] = "Female"))/COUNTROWS(ALL(YourTable))

View solution in original post

No, a table visualization, or you could use another visualization, whatever visualization you want really. In the Values area for your COUNT, click the down arrow and choose "Show value as" and then "Percent of grand total"



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
erik_tarnvik
Solution Specialist
Solution Specialist

It depends. If you simply want a percentage in a visual, you can create a measure 

Percentage = Countrows(YourTable)/Countrows(ALL(YourTable))

Create a visual with YourTable[Gender] in the first column and Percentage in the second (and format the number produced by Percentage appropriately) you will see the percentage of both Female and Male. In fact, you would see the percentage distribution of anything you put in that visual, not only gender...

 

If you truly want a measure that always give you the percentage of females in your table regardless of context:

PercentageFemale = COUNTROWS(FILTER(ALL(YourTable),YourTable[Gender] = "Female"))/COUNTROWS(ALL(YourTable))

Greg_Deckler
Super User
Super User

Create a table with Gender column and a COUNT column and then use a Quick Measure for Percent of Grand Total and it will give you the formula.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

I dont really want to create a new table for certain purpose. Can't I just calculate it from the data in the Gender column without having the need to create a new table?

 

thanks,

No, a table visualization, or you could use another visualization, whatever visualization you want really. In the Values area for your COUNT, click the down arrow and choose "Show value as" and then "Percent of grand total"



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.