matching text to text in excel

I

Ikepri

I have two sets of address in two colums, I want to only look at those that
are different. First problem is some are the same but not entered exactly the
same.

If there is a was of counting the first say ten characters of colum a and
first ten of colum b and check if similar this would help.
 
S

Stefi

=LEFT(A1,10)=LEFT(B1,10)
returns TRUE if the first 10 characters are the same.

Regards,
Stefi

„Ikepri†ezt írta:
 
I

Ikepri

Thankyou - went completly blank when doing it.

Am still probably going to need something more as I just found I could have
e.g Flat a, 21 Moore Park, in one colum and the next just "21 Moore Park" I
think I will need a formula that looks for "like" for Like Words in both
colums

But thankyou this did help.
 
S

Stefi

=ISNUMBER(SEARCH(B1,A1))

returns true if B1 is contained in A1. Searching with wildcard characters
can also help you, make a search in Help with lokkup words "wildcard
characters"!

Regards,
Stefi

„Ikepri†ezt írta:
 

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