Forum Discussion

maqsud's avatar
maqsud
Icon for Helper III rankHelper III
6 years ago
Solved

Hierarcal Problem with two columns to determine Top level

Given:

I have Two columns as shown below as shown below

 

Employee IDManager ID
E068E067
E071E067
E229E069
E248E144
E226E223
E236E241
E066E001
E067E001
E144E001
E223E001
E069E066


Problem Statement:

This problem is to identify the Head of Manager by using Employee and their Manager data.


About:

We have an Employee ID and their Manager ID. Please note that Manager ID are from Employee ID. Since each manager has one Manager above their level.

 


STEPS:

1. First, we'll take all UNIQUE ID in Manager ID column.
2. Then for each ID from Manager ID column, we will look for their respective Manager ID(Manager)
3. Then we will create a new column say `Level 1` we will put manager for each Manager ID on their respective cell.
4. Similarly, we will repeat the above 3 processes again till there is no Manager ID for that particular ID.
5. This way we can identify the Head of Manager.

 

I am able to solve the problem in EXCEL.
By using =IFERROR(VLOOKUP(C2,$A:$B,2,FALSE),"")

But this approach lead me to create new column in excel for each level hierarchy. And putting the formula on first cell of that particular column and then dragging the result for each manager

But incase of big companies there would be **n** no. of level of hierarchy. So creating the new column in excel for each level of hierarchy would be time consuming task. Hence, I am looking for an optimal solution.

 

Expected Output:

 

Employee IDManager IDLevel 1Level 2Head of Manager
E068E067E001 E001
E071E067E001 E001
E229E069E066E001E001
E248E144E001 E001
E226E223E001 E001
E236E241  E241
E066E001  E001
E067E001  E001
E144E001  E001
E223E001  E001
E069E066  E001

 

The Employee ID column contain **UNIQUE ID** while Manager ID contain **DUPLICATES ID**.


Thank you for your time and consideration.

  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi maqsud

     

    Create 4 calculated columns as below:

     

    Column = 
    var _employee=CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Employee ID]=EARLIER('Table'[Employee ID])))
    Return
    CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Employee ID]=_employee))
    Level 1 = 
    
    IF('Table'[Manager ID] in FILTERS('Table'[Column]),BLANK(),'Table'[Column])
    Level 2 = 
    var _managerID= CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Column]<>BLANK()&&'Table'[Level 1]=BLANK()))
    var _column=CALCULATE(MAX('Table'[Column]),FILTER('Table','Table'[Column]<>BLANK()&&'Table'[Level 1]=BLANK()))
    Return
    IF('Table'[Level 1]=_managerID,_column,BLANK())
    Head of Manager = IF('Table'[Level 2]<>BLANK(),'Table'[Level 2],IF('Table'[Level 2]=BLANK()&&'Table'[Level 1]<>BLANK(),'Table'[Level 1],IF('Table'[Level 2]=BLANK()&&'Table'[Level 1]=BLANK(),IF('Table'[Column]<>BLANK(),'Table'[Column],'Table'[Manager ID]))))

     

    Finally you will see:

    For the related .pbix file,pls click here.

     

     
    Best Regards,
    Kelly
    Did I answer your question? Mark my post as a solution!

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi maqsud

     

    Create 4 calculated columns as below:

     

    Column = 
    var _employee=CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Employee ID]=EARLIER('Table'[Employee ID])))
    Return
    CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Employee ID]=_employee))
    Level 1 = 
    
    IF('Table'[Manager ID] in FILTERS('Table'[Column]),BLANK(),'Table'[Column])
    Level 2 = 
    var _managerID= CALCULATE(MAX('Table'[Manager ID]),FILTER('Table','Table'[Column]<>BLANK()&&'Table'[Level 1]=BLANK()))
    var _column=CALCULATE(MAX('Table'[Column]),FILTER('Table','Table'[Column]<>BLANK()&&'Table'[Level 1]=BLANK()))
    Return
    IF('Table'[Level 1]=_managerID,_column,BLANK())
    Head of Manager = IF('Table'[Level 2]<>BLANK(),'Table'[Level 2],IF('Table'[Level 2]=BLANK()&&'Table'[Level 1]<>BLANK(),'Table'[Level 1],IF('Table'[Level 2]=BLANK()&&'Table'[Level 1]=BLANK(),IF('Table'[Column]<>BLANK(),'Table'[Column],'Table'[Manager ID]))))

     

    Finally you will see:

    For the related .pbix file,pls click here.

     

     
    Best Regards,
    Kelly
    Did I answer your question? Mark my post as a solution!