Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
hey there.
I have a table of sales with different currencies, and I made a measure to convert the sales to my desired currency.
the issue is when I view the total it's not correct and I have no idea why.
here is the sales table:
here is the total, which is wrong
here is the measure that calculates the currency exchange
the currency table is just a table that gives me the exchange rate for my currency.
Revenue in SAR =
VAR
_currency= MAX('Backend Revenue'[Currency])
VAR
_cinversionRate=
CALCULATE(
MAX('Currency'[SAR per unit])
, 'Currency'[Currency]=_currency
)
VAR
_unitPriceSAR=
SUM('Backend Revenue'[Value])* _cinversionRate
RETURN
_unitPriceSAR
Solved! Go to Solution.
Hi,
I am not sure whether the below is what you are looking for, but please check if it suits your requirement.
Hi,
I do not know how your semantic model looks like, but please try something like below whether it suits your requirement.
Revenue in SAR =
VAR _unitPriceSAR =
SUMX (
VALUES ( 'Currency'[Currency] ),
CALCULATE ( SUM ( 'Backend Revenue'[Value] ) )
* CALCULATE (
MAX ( 'Currency'[SAR per unit] ),
'Currency'[Currency] = MAX ( 'Backend Revenue'[Currency] )
)
)
RETURN
_unitPriceSAR
same thing
Hi @unemployer ,
If you don't mind, could I ask the following questions? Does your fact table have the currency column? In that case, are you using the physical relationship between your currency field in your fact table with the exchange rates table? Also, exchange rates tends to be reevaluated for different time periods typically every month, and in this case, combination of your fact table currency field with the month information may need to be linked with the currency and month concatenated information in the currency table, I thought.
Multiplication or division depends on how the currency pair is denominated in your particular currency table data.
Best regards,
Hi,
Please share your sample pbix file's link, and then I can try to look into it.
Hi,
I am not sure whether the below is what you are looking for, but please check if it suits your requirement.
you are a legend
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.