Forum Discussion
09
4 years agoHelper I
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...
- 4 years ago
09 , try a new column like
minx(filter(Table, [ID] =earlier([ID]) && [Part_number] =earlier([Part_number]) && [Designator] ="repaired"), [Date])
09
4 years agoHelper I
Thank you for your help!
It works.