match some character in b1 to c1 and display on d1

C

clay8

Hello

Any functions to match at least some character in b1 to c1 and displa
it on d1?

like

b1 is clarice Leonie lee

c1 is clarice_lee @abc.com (without space)

d1 is Yes

OR
b1 is clarice Leonie lee

c1 is Carry_lee @abc.com (without space)
d1 is n
 
C

clay8

Spencer101;1604886 said:
Are you only trying to match the first name? i.e. only interested in th
Clarice bit?


I am trying to match a any possible combination ,

eg
clariceLeonielee @abc.com
clarice_Leonie_lee @abc.com
(e-mail address removed)

etc

the main purpose is to check if the email is correctly tied to the nam
but some poeple have common / similar name.

Any other suggestions?


opps forget to say thanks!

Thanks
 
C

Claus Busch

Hi Clay,

Am Fri, 24 Aug 2012 07:16:24 +0000 schrieb clay8:
b1 is clarice Leonie lee

c1 is clarice_lee @abc.com (without space)

d1 is Yes

OR
b1 is clarice Leonie lee

c1 is Carry_lee @abc.com (without space)
d1 is no

try:
=IF(ISNUMBER(FIND(LEFT(C1,FIND("_",C1)-1),B1)+FIND(MID(C1,FIND("_",C1)+1,FIND("@",C1)-FIND("_",C1)-1),B1)),"yes","no")


Regards
Claus Busch
 
C

clay8

Spencer101;1604890 said:
If you have a list of names and which email should be associated wit
that name you could create a VLOOKUP comparison. That would do th
trick (if I've understood what you're trying to achieve of course).

Nope , i am tring to determine if the email is a false one.

Like a person named moose way cannot(should not?) have a email horse_wa
@abc.com.

There is no way i can know if the email is correct, but i want
function that can help me eliminate those that are surly false. Th
email maybe outdated so those who are not around etc, can have their ol
email link to new user(horse way email with moose way email
 

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