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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
larrytam
Frequent Visitor

Looking up values from another tables and date is within a date range

HI

 

I am a bit stuck in getting the "Tare(Tonnes)" from the right table to the left one given the "Truck Combination" = "LinkedTruckID" and the "Docket Date" is between "start date" and "end date". 

 

Appreciate for any help

 

 

larrytam_0-1673485288267.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @larrytam ,

 

Please try this measure:

Measure = 
CALCULATE(
    [Tare(Tonnes)],
    'Table2'[Linked TuckID]=SELECTEDVALUE('Table1'[Truck Combination])
    && 'Table2'[start date]<=SELECTEDVALUE('Table1'[Docket Date])
    && 'Table2'[end date]>=SELECTEDVALUE('Table1'[Docket Date])
)

vcgaomsft_0-1673579605051.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @larrytam ,

 

Please try this measure:

Measure = 
CALCULATE(
    [Tare(Tonnes)],
    'Table2'[Linked TuckID]=SELECTEDVALUE('Table1'[Truck Combination])
    && 'Table2'[start date]<=SELECTEDVALUE('Table1'[Docket Date])
    && 'Table2'[end date]>=SELECTEDVALUE('Table1'[Docket Date])
)

vcgaomsft_0-1673579605051.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

It works, appreciate for your help

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors