Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I have 2 Table , Table 1 & Table 2
| Table 1 |
| ID |
| A |
| B |
| C |
| Table 2 | ||
| ID | values | Date |
| A | 2 | 24-Sep |
| A | 1 | 02-Oct |
| B | 55 | 01-Aug |
| B | 64 | 03-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
Solved! Go to Solution.
@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])
@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])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 38 | |
| 36 | |
| 29 | |
| 28 |
| User | Count |
|---|---|
| 127 | |
| 88 | |
| 78 | |
| 66 | |
| 64 |