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

 

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

 

Anonymous
Not applicable

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

 

PS 

currencyTable[isocode]=opps[isocode])

 

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.

Top Solution Authors