Excel Index array where a if a criteria has ended start to view another column

p85ki

New Member
Joined
Nov 7, 2015
Messages
22
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
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Maybe something like this (untested, may or may not work depending on data layout which can not be determined from a formula with named ranges and no visual example).
Excel Formula:
=IF(TRIM(H$5)="","",
IFERROR(INDEX(Data_CEC_Name,AGGREGATE(15,6,ROW(Lead_Manager:Temp_Manager)/(Lead_Manager:Temp_Manager=D$5),ROWS(C$1:C1))),""))
 
Upvote 0
Maybe something like this (untested, may or may not work depending on data layout which can not be determined from a formula with named ranges and no visual example).
Excel Formula:
=IF(TRIM(H$5)="","",
IFERROR(INDEX(Data_CEC_Name,AGGREGATE(15,6,ROW(Lead_Manager:Temp_Manager)/(Lead_Manager:Temp_Manager=D$5),ROWS(C$1:C1))),""))
Soert for the delay in a reply. Its been horribly busy along with my ISP playing up for most of the day.
I've had a play and this doesn't quote do it although ca see what you done.

I've decided to make it easier and split the 2 different sections up. At least that way if something does go wrong it isn't too complex for the next person to see thee issue :)

Thanks for taking a look at the formula. :)
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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