• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Matching Values

clumpa

Member
I have effectively a 4 column spreadsheet

Col A D A E B C

Col C A B C D E which is fixed

Col D 4 3 0 1 5

I want to populate col B with the matching value from col D
i.e. col B should read 1 4 5 3 0

I have tried a combination of INDEX MATCH & OFFSET but got into a real muddle!!

Any help would be really appreciated
 
You can use VLOOKUP.
Code:
=VLOOKUP(A1,$C$1:$D$5,2,0)

And INDEX,MATCH can be used like:
Code:
=INDEX($D$1:$D$5,MATCH(A1,$C$1:$C$5,0))
 
Back
Top