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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to multiply two filtred values in one column and then sum them together

I have the following data:

 

IDLocationMetric Value
1APopulation1000
2AAverage Income50000
3BPopulation2000
4BAverage Income30000
5CPopulation5000
6CAverage Income20000

 

How do I get the following result:

 

sum(Value of Population * Value of Average Income) / sum(Value of Population)

 

So when I select locations A and B, it should calculate each location's Value of Population * Value of Average Income then sum them together.

 

Thanks.

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @Anonymous 

 

Try this measure:

Sum PXAV = 
VAR _A =
    SUMMARIZE (
        'Table',
        'Table'[Location],
        "PXAI",
            CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Metric ] = "Population" )
                * CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Metric ] = "Average Income" )
    )
RETURN
    SUMX ( _A, [PXAI] )

 

Output:

VahidDM_0-1636596515909.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!


LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

Hi @Anonymous 

 

Try this measure:

Sum PXAV = 
VAR _A =
    SUMMARIZE (
        'Table',
        'Table'[Location],
        "PXAI",
            CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Metric ] = "Population" )
                * CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Metric ] = "Average Income" )
    )
RETURN
    SUMX ( _A, [PXAI] )

 

Output:

VahidDM_0-1636596515909.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!


LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Anonymous
Not applicable

Thank you, this is exactly what I need.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors