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

Need advice on Matrix Table with Two tables with calulations

Hi

I need some advice to calulate supplier PPM from two tables. The calulation is as followed - Defects / Qty Received * 1000000 = Supplier Code PPM from the two tables below. I have a sample format report (under the table image) by month that I am trying to recreate  using Power Bi Matrix table but been unsuccessful. Any guidance would be helpful.

 

Tables asd.jpg

 

PPM REPORT.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

I can find the supplier code as relationship key, but it seems like lots of records has same supplier code. Is there any other fields to help records correct mapping?

If your requirement is for whole records, you can try to use following formula:

Measure =
CALCULATE (
    SUM ( TableB[Defects] ),
    FILTER (
        ALLSELECTED ( TableB ),
        [Supplier Code] IN VALUES ( TableA[Supplier Code] )
    )
)
    / CALCULATE (
        SUM ( TableA[Defects] ),
        ALLSELECTED ( TableA ),
        VALUES ( TableA[Supplier Code] )
    ) * 1000000

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

I can find the supplier code as relationship key, but it seems like lots of records has same supplier code. Is there any other fields to help records correct mapping?

If your requirement is for whole records, you can try to use following formula:

Measure =
CALCULATE (
    SUM ( TableB[Defects] ),
    FILTER (
        ALLSELECTED ( TableB ),
        [Supplier Code] IN VALUES ( TableA[Supplier Code] )
    )
)
    / CALCULATE (
        SUM ( TableA[Defects] ),
        ALLSELECTED ( TableA ),
        VALUES ( TableA[Supplier Code] )
    ) * 1000000

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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