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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

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
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

It works! Thank you!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.