Comparing values between cells

odc156

New member
Joined
Jun 12, 2012
Messages
1
Reaction score
0
Points
0
Does a function exist in excel to compare values between cells in the following way?

12345 56
23456
34567

Look into first column to find any number that has the last two digits that match the number in the second column. In this case 56.
 
How about this:

Code:
=MATCH(TEXT(B1,0),INDEX(RIGHT(A1:A3,2),0,1),0)

Cheers,
 
Back
Top