Forum Discussion
Track/Create Revision History
bob57 , first of all, you need a snapshot of the data for that. Do you have that in Power BI? With refresh date as one of the column
If you do not have a snapshot, you need to check DAX append
https://blog.crossjoin.co.uk/2020/04/13/keep-the-existing-data-in-your-power-bi-dataset-and-add-new-data-to-it-using-incremental-refresh/
https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/
Post that for same ID you can check for status on old snapshot
new column =
var _max = maxx(filter(Table, [Fieled] = earlier([Fieled] ) && [Create date] < earlier([Create date]) && [Status] <> earlier([Status]) ) , [Snapshot date])
return
datediff(maxx(filter(Table, [Fieled] = earlier([Fieled] ) && [ [Snapshot date]] = _max ) , [Create date]) , [Create date], day)
- bob574 years agoHelper IV
Thank you! I shall move forward with the reading and study your solution. I now have a direction.