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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.