This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi all,
I'm trying to see if there is a way to highlight a change to a project that I'm recording on a table on dataverse. For example, if the status of the project changes, I'd like to show that in a graph.
I'm really unsure how to do this as as far as I'm aware Power BI and dataverse only use current data, and doesn't look at data that was previous in the record.
Anyone know how to do this?
Solved! Go to Solution.
Hi @mwinds ,
I created some data:
Would you consider adding a time field to the table that records the time of day for all data records, and using measure to determine the date of previous data to highlight?
Customized rules: Previous data date: 2024.2.4
Here are the steps you can follow:
1. Create measure.
color =
var _previousdate=DATE(2024,2,4)
return
IF(
MAX('Time_Table'[Date])>_previousdate,"red")
2. Select [ID] – Conditional formatting – Background color.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @mwinds ,
I created some data:
Would you consider adding a time field to the table that records the time of day for all data records, and using measure to determine the date of previous data to highlight?
Customized rules: Previous data date: 2024.2.4
Here are the steps you can follow:
1. Create measure.
color =
var _previousdate=DATE(2024,2,4)
return
IF(
MAX('Time_Table'[Date])>_previousdate,"red")
2. Select [ID] – Conditional formatting – Background color.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@mwinds , For that you need to create snapshots.
Check if this can help
https://blog.crossjoin.co.uk/2020/04/13/keep-the-existing-data-in-your-power-bi-dataset-and-add-new-...
https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 27 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 25 | |
| 24 |