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 every day all the IDs have a status mentioned.
Now I have combined all the daily reports that where collected since the start of my project, and now I want to calculate the first date a certain ID had a certain status.
E.g.
Date ID Status
| 20-8-2019 | 1111 | Open |
| 21-8-2019 | 1111 | Closed |
| 22-8-2019 | 1111 | Closed |
| 23-8-2019 | 1111 | Closed |
| 24-8-2019 | 1111 | Closed |
| 25-8-2019 | 1111 | Closed |
| 20-8-2019 | 2222 | Open |
| 21-8-2019 | 2222 | Open |
| 22-8-2019 | 2222 | Open |
| 23-8-2019 | 2222 | Open |
| 24-8-2019 | 2222 | Closed |
| 25-8-2019 | 2222 | Closed |
| 20-8-2019 | 3333 | Closed |
| 21-8-2019 | 3333 | Closed |
| 22-8-2019 | 3333 | Closed |
| 23-8-2019 | 3333 | Closed |
| 24-8-2019 | 3333 | Closed |
| 25-8-2019 | 3333 | Closed |
| 20-8-2019 | 4444 | Open |
| 21-8-2019 | 4444 | Open |
| 22-8-2019 | 4444 | Open |
| 23-8-2019 | 4444 | Open |
| 24-8-2019 | 4444 | Open |
| 25-8-2019 | 4444 | Open |
I would like to only have the IDs with the first time the status was on closed:
| 21-8-2019 | 1111 | Closed |
| 24-8-2019 | 2222 | Closed |
| 20-8-2019 | 3333 | Closed |
Can somebody please me with this?
Thank you :)
Anonymous try this
Max Date = CALCULATE( MIN( Table[Date] ), ALLEXCEPT( Table, Table[Id] ), Table[Status] = "Closed" )
2 Replies
- parry2kSuper User
Anonymous try this
Max Date = CALCULATE( MIN( Table[Date] ), ALLEXCEPT( Table, Table[Id] ), Table[Status] = "Closed" )
- AnonymousNot applicable
Thank you! This really helped :)