Hi
I am currently working on a spreadsheet that lists lots of data about where people are within each department.
Please see the below example that may help understand the issue:
Example:
A Lead Manager has 25 staff and lists 25 staff using the Lead_Manager formula below.
Due to his department being extremely busy, the Lead Manager has 6 extra staff for the next month and so the quieter departments have provided him 6 staff. He is now a temp manager for those staff.
The issue I am facing is that If I start off with the Temp_Manager formula, then I will not see the 6 team members in the Lead_Manager columns (C1 - C6) as the rows are scrolling downwards and not fixed on both side. If I start off with Lead_Manager, as that will be the bulk of the list, I will never see the secondary staff the Temp_Manager has.
These staff must be listed under their original manager so we are aware of the department they are in, and potentially recruit if required.
I could after 30 rows just place the singular Temp Manager Formula, which would be the short term solution.
I am seeing if anyone knows of a effective way to put these 2 formulas together to work or best way to resolve this (if an index is not the solution)?
Lead Manager Formula
=IF(LEN(TRIM(H$5))<1,"",
IFERROR(INDEX(Data_CEC_Name,SMALL(IF(Lead_Manager=D$5,ROW(Lead_Manager)-1),ROWS(Data!$C$1:$C1))),""))
Temp Manager Formula
=IF(LEN(TRIM(H$5))<1,"",
IFERROR(INDEX(Data_CEC_Name,SMALL(IF(Temp_Manager=D$5,ROW(Temp_Manager)-1),ROWS(Data!$C$1:$C1))),""))
Thanks
I am currently working on a spreadsheet that lists lots of data about where people are within each department.
Please see the below example that may help understand the issue:
Example:
A Lead Manager has 25 staff and lists 25 staff using the Lead_Manager formula below.
Due to his department being extremely busy, the Lead Manager has 6 extra staff for the next month and so the quieter departments have provided him 6 staff. He is now a temp manager for those staff.
The issue I am facing is that If I start off with the Temp_Manager formula, then I will not see the 6 team members in the Lead_Manager columns (C1 - C6) as the rows are scrolling downwards and not fixed on both side. If I start off with Lead_Manager, as that will be the bulk of the list, I will never see the secondary staff the Temp_Manager has.
These staff must be listed under their original manager so we are aware of the department they are in, and potentially recruit if required.
I could after 30 rows just place the singular Temp Manager Formula, which would be the short term solution.
I am seeing if anyone knows of a effective way to put these 2 formulas together to work or best way to resolve this (if an index is not the solution)?
Lead Manager Formula
=IF(LEN(TRIM(H$5))<1,"",
IFERROR(INDEX(Data_CEC_Name,SMALL(IF(Lead_Manager=D$5,ROW(Lead_Manager)-1),ROWS(Data!$C$1:$C1))),""))
Temp Manager Formula
=IF(LEN(TRIM(H$5))<1,"",
IFERROR(INDEX(Data_CEC_Name,SMALL(IF(Temp_Manager=D$5,ROW(Temp_Manager)-1),ROWS(Data!$C$1:$C1))),""))
Thanks