SOLVED

Data searching and placement

Brass Contributor

Hello everybody,

I have two random names list in Column-C and Column-J and three blank Columns as F, G and H. The complete list of names including their relevant data is in Columns J, K, L and M. All I want is that data to be placed on Column F, G and H upon matching names in Column-C with Column-J. Any help in form of Macro or formula will greatly appreciated and thank you in advance.

 

Capture.PNG

4 Replies

@A2Z CF Depending on your Excel version, look into VLOOKUP or XLOOKUP. Many examples are found on line. No VBA needed.

 

 

best response confirmed by A2Z CF (Brass Contributor)
Solution

@A2Z CF 

=INDEX(K$2:K$22,MATCH($C2,$J$2:$J$22,0))

An alternative could be INDEX and MATCH.
index and match.JPG 

Thank you so much for the long-term solution. I appreciate it very much
Thank you again
Awesome! Thank you so much for providing solution for a very complex problem. It works really great! I appreciate it very much. Thanks once again
1 best response

Accepted Solutions
best response confirmed by A2Z CF (Brass Contributor)
Solution

@A2Z CF 

=INDEX(K$2:K$22,MATCH($C2,$J$2:$J$22,0))

An alternative could be INDEX and MATCH.
index and match.JPG 

View solution in original post