Forum Discussion

09's avatar
09
Helper I
4 years ago
Solved

Find the date

Hello all, For this example below, I wante a DAX measure that returns the change over date from defective to repaired for each ID(the part don't have a unique ID). I tried many formulas but they did...
  • amitchandak's avatar
    4 years ago

    09 , try a new column like

     

    minx(filter(Table, [ID] =earlier([ID]) && [Part_number] =earlier([Part_number]) && [Designator] ="repaired"), [Date])