Hi All,
I need some help with a logic. I have process, sub-process and status of sub process as columns. The logic is such I want the processes that have status only as "OPEN","WORK IN PROGRESS" and "DRAFT". If any of the subprocess has anything apart from these,they should be filtered out and only the process having sub-process as the above three should be returned. Can this be be done using any of the tools of alteryx,like formula, multi-row,etc.
The data is something like
| Process | Subprocess | Status |
| A | A1 | OPEN |
| A | A2 | OPEN |
| A | A3 | COMPLETED |
| A | A4 | WORK IN PROGRESS |
| A | A5 | DECATIVATED |
| B | B1 | OPEN |
| B | B2 | WORK IN PROGRESS |
| B | B3 | OPEN |
| B | B4 | DRAFT |
| C | C1 | OPEN |
| C | C2 | WORK IN PROGRESS |
| D | D1 | DEACTIVATED |
| D | D2 | OPEN |
| D | D3 | COMPLETED |
| D | D4 | WORK IN PROGRESS |
so i should get only B and C as my output. Process A and D has active subprocesses in other states apart from the ones i need.
Thanks
Zaid