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
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! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 137 | |
| 102 | |
| 68 | |
| 66 | |
| 64 |