Forum Discussion
LFORS
4 years agoFrequent Visitor
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...
- 4 years ago
LFORS , Create a new column
maxx(filter(Table, [problem] = earlier([problem]) && [date] < earlier([Date]) ) , [Date])
amitchandak
4 years agoSuper User
LFORS , Create a new column
maxx(filter(Table, [problem] = earlier([problem]) && [date] < earlier([Date]) ) , [Date])
LFORS
4 years agoFrequent Visitor
amitchandak Thanks so much. Worked Perfectly.