S
sharon
When I Index and match a column it gives me the first match it finds. I
need it to look at the 2nd match instead of the first one it found.
How do I get it to skip over the first match it found??? Here is an
example
ColA-ColB--ColC-----------------Col D
joe----14----bob------=index($B$2:$B$5,match(c2,$A$2:$A$5,0))
bob---10----joe-------=index($B$2:$B$5,match(c3,$A$2:$A$5,0))
sue--- 9-----joe-------=index($B$2:$B$5,match(c4,$A$2:$A$5,0))
joe---18-----sue------=index($B$2:$B$5,match(c5,$A$2:$A$5,0))
The result is
ColD
10
14
14
9
and I want
ColD
10
14
18
9
Any help would be appreciated it.
need it to look at the 2nd match instead of the first one it found.
How do I get it to skip over the first match it found??? Here is an
example
ColA-ColB--ColC-----------------Col D
joe----14----bob------=index($B$2:$B$5,match(c2,$A$2:$A$5,0))
bob---10----joe-------=index($B$2:$B$5,match(c3,$A$2:$A$5,0))
sue--- 9-----joe-------=index($B$2:$B$5,match(c4,$A$2:$A$5,0))
joe---18-----sue------=index($B$2:$B$5,match(c5,$A$2:$A$5,0))
The result is
ColD
10
14
14
9
and I want
ColD
10
14
18
9
Any help would be appreciated it.