Fancy lookup required! :)

ryansm05

Board Regular
Joined
Sep 14, 2016
Messages
148
Office Version
  1. 365
Platform
  1. Windows
Hi,

I need a formula that can identify when the Employee in column A leaves the business. This can be seen from the -1 in the respective months.
For example Employee 1 leaves the business in P03. This is populated below the data and this is where I'd like the formula to work from if possible. I can adjust rows so this is not important but you can assume P01, P02, P03 etc are row1 (apologies for no attachment - company restrictions!)




Col ACol BCol CCol DCol ECol FCol GCol HCol ICol JCol KCol LCol MCol N
P01P02P03P04P05P06P07P08P09P10P11P12
AprMayJunJulAugSepOctNovDecJanFebMar
Employee 11-1
Employee 21-1
Employee 31-1
Employee 4 1-1

<colgroup><col width="64" style="width: 48pt;" span="5"><colgroup><col width="72" style="width: 54pt; mso-width-source: userset; mso-width-alt: 2560;"><colgroup><col width="64" style="width: 48pt;" span="8"><tbody>
</tbody>



Employee
Left?
Employee 1
P03
Employee 2P06
Employee 3P09
Employee 4P11

<colgroup><col width="75" style="width: 56pt; mso-width-source: userset; mso-width-alt: 2673;"><colgroup><col width="64" style="width: 48pt;"><tbody>
</tbody>



Thanks in advance,
Ryan
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
How about


Book1
ABCDEFGHIJKLM
1P01P02P03P04P05P06P07P08P09P10P11P12
2AprMayJunJulAugSepOctNovDecJanFebMar
3Employee 11-1
4Employee 21-1
5Employee 31-1
6Employee 41-1
7
8
9
10EmployeeLeft?
11Employee 1P03
12Employee 2P06
13Employee 3P09
14Employee 4P11
Data
Cell Formulas
RangeFormula
B11=IFERROR(INDEX($B$1:$M$1,MATCH(-1,INDEX($B$3:$M$6,MATCH(A11,$A$3:$A$6,0),0),0)),"")
 
Upvote 0
Try

=IFERROR(INDEX(B$1:M$1,1,MATCH(-1,B2:M2,0)),"Employee not yet left")
copy down the column
 
Last edited:
Upvote 0
Try this formula. It assumes your employee list at the top runs from A1 to A12, and the table below starts in row 16 ( so the cell for employee 1 would be B17. Adjust the numbers as necessary, or replace the ranges with named ranges.
Code:
=INDEX(A$1:M$1,1,MATCH(-1,OFFSET(A$1,MATCH(A17,A$1:A$12,0)-1,0,1,13),0))
 
Upvote 0
Thanks everyone for your suggestions - all worked perfectly!

Much appreciated :)

Ryan
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0
Hi, one further question - if I wanted to adapt the formula for a very similar predicament but where '-1' could range between multiple numbers (-100 to 200) …. is it possible to look up value X rather than specific to '-1'?

Value X being a value between -100 : 200

Thanks
Ryan
 
Upvote 0
Put the value you want to lookup in C10 & use
=IFERROR(INDEX($B$1:$M$1,MATCH($C$10,INDEX($B$3:$M$6,MATCH(A11,$A$3:$A$6,0),0),0)),"")
 
Upvote 0
The issue is that the value will vary - I've extended this formula to 1000's of rows also. I guess what I'm looking for is the formula to look for any value other than 0.

Is this possible?
 
Upvote 0
Will you only have 1 non blank cell in each row?
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

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