Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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:
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):
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
Solved! Go to Solution.
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.
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.
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.
I don't think you need sumx to achieve what you need to do.
This gives me an error
but I found the solution
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |