Array Lookup Help

Druz09

New member
Joined
Feb 11, 2016
Messages
3
Reaction score
0
Points
0
Hi,

I've been trying to find a good formula for the following task:

Within an excel table, I have two arrays:
BobSarahRoss
JeffConorGeorge
AnneKellyJane
1
23
456
789

I want a formula to search "Bob" and return "1", something that takes the coordinates of Bob within the first array and outputs the corresponding coordinate text within a separate array.

Thanks!
 
Last edited:
I want a formula to search "Bob" and return "1",
If Criteria in A9 (Bob) then formula can be
Code:
=SUMPRODUCT((A9=$A$1:$C$3)*$A$5:$C$7)
or
=SUMIF(A1:C3,A9,A5:C7)
 
Last edited:
Back
Top