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,
I would like to get a suggestion for my issue. Currently, I am receiving many documents in different reporting currencies. So my calculations are as follows:
Now I am trying to show the total amount as default in EUR, but also in USD or GBP if the right tile is being pressed or selected as:
Also, will the Pie Chart will be updated accordingly? And how could I achieve such functionality? Any tips or suggestions would be highly appreciated.
Cheers,
Matas
Solved! Go to Solution.
@Matas , A very similar topics ha been solved here, see if that can help
https://www.sqlbi.com/articles/currency-conversion-in-power-bi-reports/
Thank you for all the suggestions.
I was able to figure it out pretty much by combining all of your provided information.
Cheers!
Change your GBP, EUR and DOL queries to a merge with the exchange rate file.
The amounts as a new base currency column eg all GBP.
Then create a Currency pick list table
Currency | Exchangerate |
GBP | 1 |
EUR | 1.19 |
DOL | 1.26 |
and this measure
GBPAmount =
SUM(Sales[GMPValue)])
Sales in currency =
VAY myexchangerate= SELECT(picklist(Exchangerate))
RETURN
[GBPAmount] * myexchangerate
The either add a slicer with the picklist(Currency)
or use the filter menu to specify the picklist(Currency) for each visual.
Drag the [Sales in currency] to your visual and it should work.
Please click thumbs up and Accepot As Solution, thank you !
Hello @Matas ,
you could use the switch function as explained here
(775) DAX Fridays! #15: SWITCH - YouTube
You will need to use explicit measures and an additional table.
Is that what you are looking for?
best
hashtag_pete
@Matas , A very similar topics ha been solved here, see if that can help
https://www.sqlbi.com/articles/currency-conversion-in-power-bi-reports/
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 |
---|---|
144 | |
87 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |