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! Learn more

Reply
Jelse
Frequent Visitor

How to add a calculated Column with SumIf function that takes values into account of another table

Hello,

 

I'm new to PowerBI and I'm having a hard time to expand a table "Leverancier - Total Ordering" with a new column where every row/cell is a SUMIF of the column "Ordering" of another table "REVEX-TOTAAL". The cell/row of this new column is the SUM of all the orders of a certain supplier. The supplier is been set up as "Leverancier" (column) in tables "Leverancier - Total Ordering" & "REVEX-TOTAAL".

 

I want to use this as a next step for something else.

 

Can someone help me please? 🙂

 

Overview Tables

Jelse_0-1707921331496.png

 

Table "Leverancier" where I want to add a SUMIF from the column "Ordering" of the table "REVEX-TOTAAL" if the "Leverancier" matches

Jelse_1-1707921354714.png

 

Part of Table "REVEX-TOTAAL"

Jelse_2-1707921553820.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Jelse,

I'd like to suggest you use sumx function with current table value as condition to filter and aggregate another table records.

formula =
SUMX (
    FILTER (
        'REVEX-TOTAAL',
        'REVEX-TOTAAL'[Leverancier]
            = EARLIER ( 'Leverancier - Total Ordering'[Leverancier] )
    ),
    [Ordering]
)

SUMX function (DAX) - DAX | Microsoft Learn

EARLIER, EARLIEST – DAX Guide - SQLBI

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @Jelse,

I'd like to suggest you use sumx function with current table value as condition to filter and aggregate another table records.

formula =
SUMX (
    FILTER (
        'REVEX-TOTAAL',
        'REVEX-TOTAAL'[Leverancier]
            = EARLIER ( 'Leverancier - Total Ordering'[Leverancier] )
    ),
    [Ordering]
)

SUMX function (DAX) - DAX | Microsoft Learn

EARLIER, EARLIEST – DAX Guide - SQLBI

Regards,

Xiaoxin Sheng

It works! Thank you!

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