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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Kasonga2018
Frequent Visitor

Measure to calculate penetration

Hi all

I have a table that looks like this 

Kasonga2018_0-1662969454042.png

I am trying to calculate penetration by using a measure, if I have an aggregated matrix view below

Kasonga2018_1-1662969575108.png

I would like to calculate penetration in such a way that segment A is always the denominator, so my final result should look like this.  

Kasonga2018_2-1662969658778.png

 

 

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Kasonga2018 
Please try

Percentage =
VAR Numerator =
    SUM ( 'Table'[Population] )
VAR Denominator =
    CALCULATE ( SUM ( 'Table'[Population] ), 'Table'[Segmant] = "A" )
RETURN
    DIVIDE ( Numerator, Denominator )

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

Hi @Kasonga2018 
Please try

Percentage =
VAR Numerator =
    SUM ( 'Table'[Population] )
VAR Denominator =
    CALCULATE ( SUM ( 'Table'[Population] ), 'Table'[Segmant] = "A" )
RETURN
    DIVIDE ( Numerator, Denominator )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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