I have a dataset that looks like below
| Employee | Manager |
| E1 | E2 |
| E2 | E3 |
| E3 | E4 |
| E4 | E5 |
I want to roll up the child data to all the parents associated with it based on hierarchy like below
| Employee | Manager |
| E1 | E2 |
| E1 | E3 |
| E1 | E4 |
| E1 | E5 |
| E2 | E3 |
| E2 | E4 |
| E2 | E5 |
| E3 | E4 |
| E3 | E5 |
| E4 | E5 |
Thanks in advance for the help :)
Solved! Go to Solution.
This is perfect. Thank you :)
@rpras only issue with your workflow is that the results come out the other output!
Connect to bottom and will work :)
