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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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])

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.