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
ghaines
Resolver I
Resolver I

SUMX difficulty: Does not perform as expected in the total

I've been having difficulty using SUMX in a particular situation and I've reduced the complexity of the model almost to nothing and I still can't get the expected result.

 

I have a table of fixed exchange rates consolidating to a single currency, and a list of transactions with their currency recorded.  You can see they have a different column name for the two, so the use of columns in a visual later is unambiguous:

ghaines_0-1693189753065.png

ghaines_1-1693190053060.png

 

 

I want to calculate the consolidated value:

 

 

 

ExpensesToCommonCurrency = 
SUMX(VALUES('Exchange Rates FY24'[Local Currency]),
        DIVIDE(SUM(Expenses[transactionamount]) , SELECTEDVALUE('Exchange Rates FY24'[FX]), BLANK())
)

 

 

 

which works with 'Exchange Rates FY24' context, but not in aggregate (showing rows with no data):

ghaines_2-1693190090197.png

 

I have tried changing SELECTEDVALUE to MAX or MIN but in each case it is completely losing the 'Exchange Rates FY24' context from the SUMX and just calculating the max or min across the entire XR table.

 

Edit:  If I switch to SUMX('Exchange Rates FY24', [Expression]) then I get double the expected value for EUR and CHF, despite the fact that the FX column has no direct relationship with the Expenses table at all.  And the aggregate is still blank.

 

What am I overlooking?

 

Greg

1 ACCEPTED SOLUTION
ghaines
Resolver I
Resolver I

Found the solution.  In the aggregate, the SUMX context is not passed to sum(transactionamount) unless it is wrapped in a "CALCULATE".  I don't know what the context is if you don't wrap it, but this works:

 

 

 

ExpensesToEUR = 
SUMX(VALUES('Exchange Rates FY24'[FX]),
        DIVIDE(CALCULATE(SUM(Expenses[transactionamount])) , 'Exchange Rates FY24'[FX])
)

 

 

Side note, I was struggling with a similar problem where table A filters table B and C, and I need to calculate something using B with a lookup of a value in C.  SELECTEDVALUE on Table C was not working within a SUMX.  Wrapping it in a CALCULATE is the likely answer.

View solution in original post

3 REPLIES 3
ghaines
Resolver I
Resolver I

Found the solution.  In the aggregate, the SUMX context is not passed to sum(transactionamount) unless it is wrapped in a "CALCULATE".  I don't know what the context is if you don't wrap it, but this works:

 

 

 

ExpensesToEUR = 
SUMX(VALUES('Exchange Rates FY24'[FX]),
        DIVIDE(CALCULATE(SUM(Expenses[transactionamount])) , 'Exchange Rates FY24'[FX])
)

 

 

Side note, I was struggling with a similar problem where table A filters table B and C, and I need to calculate something using B with a lookup of a value in C.  SELECTEDVALUE on Table C was not working within a SUMX.  Wrapping it in a CALCULATE is the likely answer.

DataNinja777
Super User
Super User

Hi Greg,

 

I would just divide the sum of Expenses[transactionamount] by the exchange rates, and the measure amount below is already in converted into EUR amount.  

Sakiko_0-1693191903222.png

I don't think you need sumx to achieve what you need to do.  

This gives me an error

ghaines_0-1693192399863.png

 

but I found the solution

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.