Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
dreaves1
Helper II
Helper II

How to convert foreign currencies to U.S. dollars

Hello Power BI community,

 

I have two tables. One is a currency exchange table that has two columns. One column is the currency and the other column is the exchange rate to U.S. dollars. I have a second table that includes invoices amounts from different countries with different currencies included. The currency format is the same in both tables. How can I create a formula that converts all the differenct currency entries into U.S. dollars?

 

Thank you!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @dreaves1 ,

 

Create a measure like below.

Measure = 
var _rate = CALCULATE(MAX('currency exchange'[exchange rate]),FILTER('currency exchange','currency exchange'[exchange currency] = SELECTEDVALUE('Table'[currency])))
return
SUM('Table'[sales])*_rate

1.PNG

 

Best Regards,

Jay

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @dreaves1 ,

 

Create a measure like below.

Measure = 
var _rate = CALCULATE(MAX('currency exchange'[exchange rate]),FILTER('currency exchange','currency exchange'[exchange currency] = SELECTEDVALUE('Table'[currency])))
return
SUM('Table'[sales])*_rate

1.PNG

 

Best Regards,

Jay

amitchandak
Super User
Super User

@dreaves1 ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

Try to create a new column

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

 

or refer these

https://www.youtube.com/watch?v=9oPFgHvGyKc
https://blog.enterprisedna.co/how-to-download-latest-exchange-rates-into-your-power-bi-model/
https://radacad.com/currency-converter-power-bi-function-part-1
https://radacad.com/currency-exchange-rate-conversion-in-power-bi-with-live-rates-part-2

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.