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,
I have a ''Current'' table, in which updates are logged. This table contains every new update that comes in (System, date update, update status). And a second table in which i want to show the latest update for a system (System, last update status).
I want to filter on date so that the last known update is shown. Can somebody help me with the right code for Power BI?
Kind Regards,
Léjon
Solved! Go to Solution.
Hi @lzorn,
Maybe you can try to use summarize function to create new table with last updated data.
Sample table formula:
last status =
SUMMARIZE (
Table,
[System],
"last date", LASTDATE ( Table[date update] ),
"Last status", LASTNONBLANK ( Table[update status], [update status] )
)
In addition, you can also take a look at following link about create a measure to lookup value.
Regards,
Xiaoxin Sheng
Hi,
Share some data and show the expected result.
Hi @lzorn,
Maybe you can try to use summarize function to create new table with last updated data.
Sample table formula:
last status =
SUMMARIZE (
Table,
[System],
"last date", LASTDATE ( Table[date update] ),
"Last status", LASTNONBLANK ( Table[update status], [update status] )
)
In addition, you can also take a look at following link about create a measure to lookup value.
Regards,
Xiaoxin Sheng
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |