Thank you so much!!! It worked great!!
You are welcome.
Could you please talk through the formula so I can explain it? Thank you!!
A] MATCH determines the position of a look up value in a reference.
B] INDEX returns a result value at the same position as the look up value from an associated reference.
Example. Consider E2:F4 below...
FAD,18
KAD,80
LAD,25
Goal: Get the value from B2:B4 that corresponds to KAD in A2:A4.
INDEX(F2:F4,MATCH("KAD",E2:E4,0))
would achieve the goal... Looked closely at this formula, we have:
MATCH("KAD",E2:E4,0)
==> 2
INDEX(F2:F4,2)
==> 80
We can compare the result of such formula with an existing value...
Let J2 house 45. If we try, for example in K2:
=J2=INDEX(F2:F4,MATCH("KAD",E2:E4,0))
we would get FALSE for 45 is not equal to 80 which Index/Match returns.
Hope this helps.