Forum Discussion

LFORS's avatar
LFORS
Frequent Visitor
4 years ago
Solved

Display previous incident date for each problem (DAX)

Hi all,   Im new to this forum but would love it if someone could help me with a DAX question?   What i am trying to achieve is display the date of the previous incident at a problem level. So in...
  • amitchandak's avatar
    4 years ago

    LFORS , Create a new column

     

    maxx(filter(Table, [problem] = earlier([problem]) && [date] < earlier([Date]) ) , [Date])