Need a formula

T

Trad

Its very simple. I want to input text into column C I want it to search
column A to find the same value and then return the results of column B.

Column A Column B Column C
0OK7 Haskell, OK
10XS Archer City, TX
1MO0 Dearborn, MO
1ND3 Kindred, ND

Many thanks....
 
J

Joe_Germany

If U understood correctly, U cant check if between col A & B

If so try this for ROW 2..

=if((MID(A2,2,2)=RIGHT(B2,2),"OK","NOTOK")

HTH
Joe
 
Top