Hey guys,
Sorry to bump an old thread.
This is fairly close to what im trying to achieve.
Sheet name; list (plain text, data lists)
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Mister X[/TD]
[TD]Contract A[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mister Y[/TD]
[TD]Contract C[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Mister L[/TD]
[TD]Contract B[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Mister T[/TD]
[TD]Contract A[/TD]
[/TR]
</tbody>[/TABLE]
Sheet name; work (A data validation, B formula)
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]=LIST!$A:$A [/TD]
[TD]<strike></strike>=IF(A:A=LIST!A:A,LIST!B:B)[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mister T[/TD]
[TD]Contract A[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Mister L[/TD]
[TD]Contract B[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So, in cell A1 I choose a name from data validation drop down, linked to LIST!A:A
The adjacent cell B1 needs a formula to tell me what the corresponding LIST!B:B entry is.
I know I'm looking for something along the lines of MATCH or LOOKUP.
Help is appreciated.