Forum Discussion

schoden's avatar
schoden
Post Partisan
5 years ago
Solved

Capture/store the historic timeline data

Hi Community, 

 

Is there a way I can capture and show historic data in some point of time. 

My data refreshes daily and projects only the latest data.

 

For instance: 

A ticket is created on 15 Feb 2021, on 18 Feb 2021 it is pending and on 20 Feb 2021 its is closed.

 

However the data now shows as closed on 20 Feb 2021. I want to see the status from creation till closed.

Ticket Date Status 
A15 Feb 2021Closed 
B3 March 2020Closed 

 

Would really help me as I have been trying since last one week 😞 

Thank you in advance 

  • schoden , Try that Dax append way first, Then you need to check max status before that date.

     

    calculate(lastnonblankvalue(Table[Date], Max(Table[Status])), filter(all(Table), Table[ticket] = max(Table[tickte]) && Table[Date] <= max(Table[Date]) ))

5 Replies