Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all,
I have the below measure to convert my Transactions (or Sales) data from multiple currencies (GBP,USD,ZAR) to multiple currencies (GBP,USD,ZAR,KES,INR,NGN). My code and model is shown below, however, I keep getting the error that more than one currency has been selected, despite having selected just one in the screenshot of my report.
Sales (Monthly) =
IF (
HASONEVALUE('Target Currency'[CurrencyCode]),
VAR AggregatedSalesInCurrency =
ADDCOLUMNS(
SUMMARIZE(
Transactions,
'Date'[Calendar Month Year], --maybe just use Month
'Source Currency'[TxnCurr]
),
"@SalesAmount",[Sales (internal)],
"@Rate",CALCULATE(SELECTEDVALUE('Exchange Rates - Monthly'[Rate]))
)
VAR Result =
SUMX(
AggregatedSalesInCurrency,
IF(
NOT (ISBLANK([@Rate])),
[@SalesAmount]*[@Rate],
ERROR("Missing conversion rate")
)
)
RETURN Result
)
I think the issue might be pertaining to the fact that I am using one exchange rate for each month, but I have formatted the Exchange rates - Monthly[Date] to only be yyyy/mm, so I'm not quite sure what the issue is.
Any help would be very much appreciated!
Solved! Go to Solution.
Update: On further inspection of the data provided, I see the exchange rates table is missing some conversions. I will rectify this and follow-up here if that does the trick.
Update: On further inspection of the data provided, I see the exchange rates table is missing some conversions. I will rectify this and follow-up here if that does the trick.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
12 | |
11 | |
8 |
User | Count |
---|---|
24 | |
17 | |
11 | |
11 | |
10 |