Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have table Operation (Date , Amount) and table Exchenge_rate (start_date, rate, end_date).
The specific exchange rate has been for several days. In Exchenge_rate table this is one row.
I need merge this table (perhaps there is another way), and get value Currency_Amount = Value/rate.
Perhaps this is a simple task, but I still only starting their way in Power BI.
I will be very grateful for any help
For starters, I would keep these tables separate and write a calculated column once the query is loaded.
The calculated column on the Operation table might look like this ...
Exchange Rate = CALCULATE( IFERROR(VALUES(Exchange_Rate[Rate]),BLANK()), FILTER(Exchange_Rate, EARLIER(Operation[Date])>=Exchange_Rate[Start_Date]&&EARLIER(Operation[Date])<=Exchange_Rate[End_Date]))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.