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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Thedatadude
Frequent Visitor

Get percent of total by count of value by Customer

Hello All, 

 

I am trying to calculate via Measure on a dashboard the % of 3 values in a column for each of my customers in our gender column. F is female, M is male, and I is undisclosed. This is what I have tried thus far... the dashboard does filter on multiple customers. So in the below we may have Google1, Google 2 so the multiple selection is needed. If all google accounts are selected via slicer Male would be 75% for just Google2 it would be 50%. etc. 

GENDER2 =
COUNT(Query1[Gender]) / CALCULATE(COUNT(Query1[Gender]) , FILTER('Query1',)))
Customer

Gender

 

Google 1M
Google 1M
Google 2 F
Google 2 M
MicrosoftI
MicrosoftI
1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi @Thedatadude , 

You could try below measure

Measure = CALCULATE(COUNT('Table'[Gender]))/CALCULATE(COUNT('Table'[Gender]), ALLSELECTED('Table'))

795.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

3 REPLIES 3
dax
Community Support
Community Support

Hi @Thedatadude , 

You could try below measure

Measure = CALCULATE(COUNT('Table'[Gender]))/CALCULATE(COUNT('Table'[Gender]), ALLSELECTED('Table'))

795.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

so close 🙂 just thought of allselected this morning, but you beat me to it.

not sure if this is what you're looking for, but:

% by Gender = 

var result = DIVIDE (

[GenderCount],

CALCULATE (

[GenderCount],

ALL (

'Table'[Gender]

)

)

)

return result

 

with another measure that is:

GenderCount = COUNT('Table'[Gender])

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.