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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

refer a column from another table through date, but the reference table has date range

I have two tables.

CurrencyTable:

IsoCodeStartDateNextStartDateConversionRate
AUD5/1/20197/1/20190.94485
CAD5/1/20197/1/20190.892392
AUD7/1/201912/1/20190.9568
CAD7/1/201912/1/2019

0.8872

 

OppsTable:

IdIsoCloseDateAmount
1AUD5/25/201971.00
2CAD6/12/2019125.20
3CAD7/9/20191.10
4CAD11/25/201950.00
5AUD6/29/2019100.00

 

I want to create a NZDollar column and calculate the NZDollar amount from these two tables.

For example NZDollar for Id:2 in OppsTable would be (125.20/0.892392)

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

Populate rate in opps table as a New Column

 

Rate = maxx(filter(currencyTable, currencyTable[startdate]<=opps[CloseDate] && currencyTable[nextDate] >opps[CloseDate] && currencyTable[isocode]<=opps[isocode]),currencyTable[conversionRate])
Then
NZ dollor = currencyTable[Amount]/currencyTable[Rate]

 

Another way is to use lookupvalues.

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-wi...
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p...
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

 

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

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

Populate rate in opps table as a New Column

 

Rate = maxx(filter(currencyTable, currencyTable[startdate]<=opps[CloseDate] && currencyTable[nextDate] >opps[CloseDate] && currencyTable[isocode]<=opps[isocode]),currencyTable[conversionRate])
Then
NZ dollor = currencyTable[Amount]/currencyTable[Rate]

 

Another way is to use lookupvalues.

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-wi...
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p...
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

 

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
Anonymous
Not applicable

@amitchandak Worked like a charm. Thanks for the solution. 

 

PS 

currencyTable[isocode]=opps[isocode])

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors