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! It's time to submit your entry. Live now!
Solved! Go to Solution.
Hi @cz1750,
Based on my test, you should be able to use the formula(DAX) below to create a new calculate table to get the expected result in your scenario. ![]()
Table =
SUMMARIZE (
Table1,
Table1[Id],
"value1",
VAR maxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[Value1] <> BLANK () )
)
RETURN
CALCULATE ( MAX ( Table1[Value1] ), Table1[Date] = maxDate ),
"value2",
VAR maxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[Value2] <> BLANK () )
)
RETURN
CALCULATE ( MAX ( Table1[Value2] ), Table1[Date] = maxDate )
)
Regards
Hi @cz1750,
Based on my test, you should be able to use the formula(DAX) below to create a new calculate table to get the expected result in your scenario. ![]()
Table =
SUMMARIZE (
Table1,
Table1[Id],
"value1",
VAR maxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[Value1] <> BLANK () )
)
RETURN
CALCULATE ( MAX ( Table1[Value1] ), Table1[Date] = maxDate ),
"value2",
VAR maxDate =
CALCULATE (
MAX ( Table1[Date] ),
FILTER ( Table1, Table1[Value2] <> BLANK () )
)
RETURN
CALCULATE ( MAX ( Table1[Value2] ), Table1[Date] = maxDate )
)
Regards
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 52 | |
| 41 | |
| 32 | |
| 26 | |
| 24 |
| User | Count |
|---|---|
| 132 | |
| 118 | |
| 57 | |
| 45 | |
| 43 |