Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
Hi @esclare
Try this for your new calculated column in Table2. See it working in this file
NewColValue =
VAR _MaxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[ID_House] = Table2[ID_House] )
)
RETURN
LOOKUPVALUE (
Table1[Value],
Table1[Date], _MaxDate,
Table1[ID_House], Table2[ID_House]
)
Hi @esclare
Try this for your new calculated column in Table2. See it working in this file
NewColValue =
VAR _MaxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[ID_House] = Table2[ID_House] )
)
RETURN
LOOKUPVALUE (
Table1[Value],
Table1[Date], _MaxDate,
Table1[ID_House], Table2[ID_House]
)
Thanks @AlB but didn't work: "A table of multiple values was supplied where a single value was expected." ![]()
I introduced a change because I have blank values:
VAR _MaxDate =
CALCULATE (
MAX ( table1[date] );
FILTER ( vavue; table1[id] = table2[id] )
)
RETURN
CALCULATE (
FIRSTNONBLANK ( table1[value]; 1 );
FILTER ( ALL ( table1); table1[date] = _MaxDate && table1[id] = table2[id] )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 76 | |
| 52 | |
| 51 | |
| 46 |