Forum Discussion
Anonymous
6 years agoNot applicable
First date calculation when status is first reached
Hello, I am trying to figuring out how to calculate the first date an ID has reached a certain status. What do I mean with this? I have a daily overview of multiple IDs with statusses and ev...
- 6 years ago
Anonymous try this
Max Date = CALCULATE( MIN( Table[Date] ), ALLEXCEPT( Table, Table[Id] ), Table[Status] = "Closed" )
parry2k
6 years agoSuper User
Anonymous try this
Max Date = CALCULATE( MIN( Table[Date] ), ALLEXCEPT( Table, Table[Id] ), Table[Status] = "Closed" )
- Anonymous6 years agoNot applicable
Thank you! This really helped :)