Finding / calculating reporting level in organization/hierarchy

griffy

New Member
Joined
Oct 24, 2016
Messages
19
So, I have a list exported from a system containing unique employee ids (children). Each of these rows has the employee’s manager unique id (parent). One of the employees is the CEO and is to be considered level = 1

I would like a way to calculate per employee what level they are on in the organization. Is this possible in an effective way?

Have tried a solution I found before based on MATCH and INDEX, but it is cumbersome and seems to consume enormous resources to calculate and recalculated all the time.

Unique child idUnique parent idlevel
188?
299?
344?
455?

<tbody>
</tbody>
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
You haven't shown us how you arrive at the calculated level for each employee and what criteria is required to do the calculation.
You might be better providing a sample of data with the end result already shown and how you arrived at that result.
 
Upvote 0
the formula i have used and that finally actually give the desired outcome is; =IF(A2=1;1;1+INDEX(C:C;MATCH(B2;A:A;0))) the issue is that its heavy and there are ~45k rows in up to 15 levels.
CEO is set to ID = 1
 
Upvote 0
Have you tried reducing your INDEX/MATCH ranges.....
You say approx 45000 rows, so change the formula to
Code:
=IF(A2=1;1;INDEX(C1:C50000;MATCH(B2;A1:A50000;0))+1)
 
Upvote 0
I used this instead, that worked =IF(A2=1;1;1+INDEX($C$1:$C$45000;MATCH(B2;$A$1:$A$45000;0)))
i did however get 2k rows that got level zero
could this be don in a query ?
 
Upvote 0

Forum statistics

Threads
1,214,377
Messages
6,119,185
Members
448,872
Latest member
lcaw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top