Hello,
I have a dataset which has multiple IDs. each ID can have more than one entries. It looks as below.
| ID | Client name | date trantioned | Transitioned by | transitioned From Status | Transitioned To Status |
| 1 | ABC | 11/06/2021 15:50:43 | Dane | Created | In Progress |
| 1 | ABC | 11/07/2021 21:10:04 | Tom | In Progress | On Hold |
| 1 | ABC | 11/07/2021 23:30:31 | Tom | On Hold | Completed |
| 2 | DEF | 11/06/2021 08:43:06 | Ryan | Created | In Progress |
| 2 | DEF | 11/07/2021 10:54:16 | Sam | In Progress | On Hold |
| 2 | DEF | 11/08/2021 14:48:19 | Sam | On Hold | In Progress |
| 3 | GHI | 11/03/2021 12:26:38 | Don | Created | In Progress |
| 3 | GHI | 11/03/2021 12:26:38 | Don | In Progress | On Hold |
| 3 | GHI | 11/03/2021 12:26:38 | Don | On Hold | Completed |
| 4 | JKL | 11/08/2021 13:42:53 | Nicole | Created | In Progress |
I want to achieve two things here.
1) My main objective is to see which IDs are In Progress transitioned to status. Output should look similar to the below table.
| 2 | DEF | 11/22/2021 14:48:19 | Sam | On Hold | In Progress |
| 4 | JKL | 11/08/2021 13:42:53 | Nicole | Created | In Progress |
2) I created a workflow where I was able to filter out a lot out extra entries however I am not able to filter out certain IDs (for example ID 3). Due to a technical glitch, program is creating different entries for certain IDs where all the information is same (such as trantioned date and transitioned by) other than transitioned from and transitioned to status. This glitch is creating different entries for particular IDs where it shows same person transitioned the ID from and to all the existing statuses on the same time.
Thank you very much in advance for your help!