I am currently trying to index match with only the first 10 digits of the lookup value.
=index(R:R, MATCH(E2,AQ:AQ,0))
this returns my match if they are exact, the problem is I am working wit data that is not to be modified.
what I need (AQ:AQ) , what I need with extra string(E2), value from same row of match AQ:AQ ( R:R)
=INDEX(R:R, MATCH(LEFT($E2, 10)*1, AQ:AQ, 0))
returns #N/A and I know a match exists.
I also tried below just to drop the index to work and nothing pull a valid match.
=MATCH(LEFT(E2,10),AQ:AQ,0)
Please help!
Thanks,
Morgan
=index(R:R, MATCH(E2,AQ:AQ,0))
this returns my match if they are exact, the problem is I am working wit data that is not to be modified.
what I need (AQ:AQ) , what I need with extra string(E2), value from same row of match AQ:AQ ( R:R)
=INDEX(R:R, MATCH(LEFT($E2, 10)*1, AQ:AQ, 0))
returns #N/A and I know a match exists.
I also tried below just to drop the index to work and nothing pull a valid match.
=MATCH(LEFT(E2,10),AQ:AQ,0)
Please help!
Thanks,
Morgan