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! Request now
I am using sql as my source data, and running reports for both Northern Ireland and Republic of Ireland. The data for each region is in separate tables. Is there a way I can convert the currency in the Northern Ireland tables to EURO before building my visualisations, so everything can be reported in single currency?
Thanks in advance for your help.
For currency conversion, I build a Slicer for change the currency. Then I wrote a formula to change the curreny:
For example suppose defualt currecy is Euro:
Euro_rate1= 1.05* US Dollar
Euro_rate2 =3378 * Irianian Rial (IRR)
IF(VALUES(Currency_Table[CurrencyType])="Dollar",FORMAT(SUM(Sales [Euro])/[Euro_rate1]),"$ #,##0.00;($ #,##0.00)") ,IF(VALUES(Currency_Table[CurrencyType])="IRR",FORMAT(SUM(Incentive_Table[Euro])/[Euro_rate2]),"€ #,##0.00;(€ #,##0.00)"),FORMAT(SUM(Incentive_Table[Euro])/1),"IRR #,##0.00;(IRR #,##0.00)")))
Means:
IF Currency Type="Dollar" Then Sales based on Euro/Euro_rate1
IF Currency Type="IRR" Then Sales based on Euro/Euro_rate2
Then format them.
Did you get it ?
I hope it is helpful.
Regards
Mostafa
When you bring your data in could you not create a new column and then multiply the £ by todays € rate, I find Oanda.com good.
I'm not sure of a current way that the conversion rate could automatically update itself.
If you want to keep the conversion rate updated in every refresh, you can get that rate from a Web Page query.
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.