Hello,
Every task has taskID, and may have taskRunID. Now all the taskRunID references to other task's taskID. so for example,
index, taskID, taskRunID, otherAttributes
1, 6f45, 0000, otherAttributes
2, 3gh5, 6f45, otherAttributes
3, 6xfg, 6f45, otherAttributes
4, eegh, 6hyu, otherAttributes
now what I want to do in pivot table is
MAIN TASK | SUB TASK |
---|
6f45 | 3gh5 |
| 6xfg |
6hyu | eegh |
..... | ..... |
... and so forth and I have no idea how to even begin.
Thank you for your time and consideration.