Identifying common data between 2 cells

M

MRPRMR

Hello-
I am trying to identify common criteria between 2 cells using Exce
2007.
For instance: I have a series of numbers and possibly letters in 1 cell
(part number). I want to compare to another cell that has similar bu
not exactly the same data. The info might look like this....
(Cell 1) 55758 vs. (Cell 2) AVT55758 or possibly (Cell 1) AB55758 vs
(Cell 2) XY55758000. The difference in how the data is presented is ho
a vendor might list a product. In reality, it's the same product.

I want to be able to either have a macro or a formula that could match
minimum of 4 consecutive numbers and give me a result that says it's
good match. If it's 5 consecutive numbers, then it should say it's a
excellent match.
It's a time eating process to manually view data and a macro or formul
like this would be a great time saver. Anyone have any ideas? Thanks
Mar
 
C

Claus Busch

Hi Mark,

Am Fri, 16 Nov 2012 19:13:39 +0000 schrieb MRPRMR:
For instance: I have a series of numbers and possibly letters in 1 cell
(part number). I want to compare to another cell that has similar but
not exactly the same data. The info might look like this....
(Cell 1) 55758 vs. (Cell 2) AVT55758 or possibly (Cell 1) AB55758 vs.
(Cell 2) XY55758000. The difference in how the data is presented is how
a vendor might list a product. In reality, it's the same product.

you are comparing A1 and B1:
=IF(ISNUMBER(FIND(RIGHT(A1,5),B1)),"Excellent Match",IF(ISNUMBER(FIND(RIGHT(A1,4),B1)),"Good Match",""))


Regards
Claus Busch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top