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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
brief001
Helper II
Helper II

Sum using two relation tables

I'm looking for a DAX formula that calculates the sum using two other tables. One table shows how often a certain code occurs. And in a dimension table is the duration of this code. In the example below you can see what my question is exactly:

brief001_0-1634913702943.png

 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @brief001 

 

Try this:

Measure =
VAR _Dur =
    ADDCOLUMNS(
        'Table 2',
        "Dur1",
            [Amount]
                * ( LOOKUPVALUE( 'Table 3'[Duration], 'Table 3'[Code], 'Table 2'[Code] ) )
    )
RETURN
    SUMX( _Dur, [Dur1] )

 

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

Appreciate your Kudos!!

 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

Hi @brief001 

 

Try this:

Measure =
VAR _Dur =
    ADDCOLUMNS(
        'Table 2',
        "Dur1",
            [Amount]
                * ( LOOKUPVALUE( 'Table 3'[Duration], 'Table 3'[Code], 'Table 2'[Code] ) )
    )
RETURN
    SUMX( _Dur, [Dur1] )

 

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

Appreciate your Kudos!!

 

Thank you VahidDM, this formula works exactly as hoped. 😀

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors