Forum Discussion
MuppetyMe
Helper I
1 year agoLOOKUPVALUE troubles
I have two tables: Table1 has multiple lines referencing the same ID with teammate names on different dates. On Table2, I want to bring over the teammate name from the most recent date by the ID. Cr...
Kedar_Pande
Super User
1 year agoIn Table2, create a new calculated column
Recent Teammate =
CALCULATE(
FIRSTNONBLANK(Table1[Teammate], 1),
FILTER(
Table1,
Table1[ID] = Table2[ID] &&
Table1[Date] = CALCULATE(MAX(Table1[Date]), Table1[ID] = Table2[ID])
)
)