I have a range where I need to derive the level/depth in the hierarchy for each cell where some cells are comma seperated , for example:
<tbody>
Task
SubTask
ParentTask
T1
T2
T0
T5
T3,T4
T8
T2
</tbody>
In this example range, the level of T0, T5 is 1. The level of T1,T3,T4 is 2. The...