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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply

Exchange Rates and Dates

Hi Power BI Community,

I am working on a dataset for exchage rates. However, the exchange rates have specific dates associated to the exchange rate.

I have the following exchange rate table:

CurrencyExchange RateStart DateEnd Date
USD1.3201/01/202131/01/2021
USD1.5401/02/202128/02/2021

I have the following Sales table:

Sale PriceQuantityCurrencySale Date
5145GBP15/01/2021

I need to create a calculation to look at the data in the Sales table and accurately exchange the Sale Price based on the exchange rate for the the Sale Date happened, with reference to the start and end date for the currency exchange rate.

I would really appreciate any help on this.

Thank you in advance.

1 ACCEPTED SOLUTION

Try to create a measure like below:

SALE_ = 
VAR _DATE = SELECTEDVALUE(Table2[Sale Date])
VAR _RATE =  CALCULATE(MAX(Table1[Exchange Rate]),FILTER(Table1,Table1[Start Date]<=_DATE&&Table1[End Date]>=_DATE))
RETURN SUM(Table2[Sale Price])*_RATE

Vlianlmsft_0-1632796083968.png

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@PowerEnthusiast , based on what I got so far new column in sales

 

 

rate = minx(filter(Rate, [Sale Date] >=[Start Date] && [Sale Date]<=[End date]),[Exchange Rate])

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

Hi @amitchandak 

The dates are in different tables - how do I look up from the Sales table to the Exchange Rate table?. Also, I don't think I will be able to reference a column for the dates in the query above. Seems to only want measures. 

Try to create a measure like below:

SALE_ = 
VAR _DATE = SELECTEDVALUE(Table2[Sale Date])
VAR _RATE =  CALCULATE(MAX(Table1[Exchange Rate]),FILTER(Table1,Table1[Start Date]<=_DATE&&Table1[End Date]>=_DATE))
RETURN SUM(Table2[Sale Price])*_RATE

Vlianlmsft_0-1632796083968.png

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.