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
jay_patel
Helper IV
Helper IV

How to Gst Values having Maximum Date in Lookup function to get from Table 2 in Table 1

Hi All,

I have 2 Table , Table 1 & Table 2

Table 1
 
ID
A
B
C

 

 

Table 2  
   
IDvaluesDate
A224-Sep
A102-Oct
B5501-Aug
B6403-Oct

 

Want Values in Table 1 , by matching Id but for Maximum date.
So, For ID= A, the value should be 1 

and for ID = B, the value should be 64

@amitchandak 

Thanks in Advance

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jay_patel , Try a new column in table1

 

var _max = maxx(filter(Table2, Table1[ID] = Table2[ID]), Table2[Date])

return
maxx(filter(Table2, Table1[ID] = Table2[ID] && Table2[Date] =_max), COst[values])

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

1 REPLY 1
amitchandak
Super User
Super User

@jay_patel , Try a new column in table1

 

var _max = maxx(filter(Table2, Table1[ID] = Table2[ID]), Table2[Date])

return
maxx(filter(Table2, Table1[ID] = Table2[ID] && Table2[Date] =_max), COst[values])

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors