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
Markando
Frequent Visitor

Get latest updated currency rate

Hello!

 

I've got a sales tables with transactions spanning every weekday. The sales transaction is logged in local currency (EUR) but I want to convert the report to USD. My currencyrate table is however only updated on saturdays. So I would like get the latest available currencyrate to calculate my report with. Any good ideas?

 

For the example below I would like to get 1,18 and 1,2 for the two different transactions and sum up the total

 

Sales:

Date | Salesamount | Currency

2017-08-28 | 50 | EUR

2017-09-04 | 100 | EUR

 

Currencyrates

Date | Currency | Rate

2017-08-26 | EUR/USD | 1,18

2017-09-02 | EUR/USD | 1,2



1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @Markando,

 

Based on my test, you should be able to use the formula below to add a calculate column in Sales table to get the latest available currencyrate, and then use it in other calculations. Smiley Happy

Rate = 
CALCULATE (
    MAX ( Currencyrates[Rate] ),
    FILTER ( Currencyrates, Currencyrates[Date] <= Sales[Date] )
)
SalesamountUSD = Sales[Salesamount]*Sales[Rate]

c2.PNG

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Employee
Employee

Hi @Markando,

 

Based on my test, you should be able to use the formula below to add a calculate column in Sales table to get the latest available currencyrate, and then use it in other calculations. Smiley Happy

Rate = 
CALCULATE (
    MAX ( Currencyrates[Rate] ),
    FILTER ( Currencyrates, Currencyrates[Date] <= Sales[Date] )
)
SalesamountUSD = Sales[Salesamount]*Sales[Rate]

c2.PNG

 

Regards

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.