Forum Discussion

Alaqillina's avatar
Alaqillina
New Member
1 year ago
Solved

How to create new percentage measure?

 I create it this measure DIVIDE ([Headcount], CALCULATE([Headcount], ALLSELECTED( 'Basic Information'))) so based on this function I want to show the female percentage in the card  
  • BeaBF's avatar
    1 year ago

    Alaqillina Hi! you can use:

    Female Percentage =
    DIVIDE(
    CALCULATE([Headcount], 'Basic Information'[Gender Desc] = "Female"),
    CALCULATE([Headcount], ALLSELECTED('Basic Information'))
    )

     

    If it's ok, please accept the answer as solution.

     

    BBF