Split text to compare

M

Manos

Dear all

I have a code extracted A1 from the system and looks like. Bill.Eko1
Bill.Eko37
Bill.Eko123

There is any possible way to keep from the code the right part of the code,
anything after to dot (Eko1, Eko37, Eko 123.) and compare it with a text in
next cell B1

To compare them in C1.

Thanks in advance
Manos
 
R

Rick Rothstein \(MVP - VB\)

Something like this maybe...

=MID(A1,FIND(".",A1)+1,99)=B1

Rick
 
R

Rick Rothstein \(MVP - VB\)

Here is another way to do it also...

=COUNTIF(A1,"*."&B1)=1

Rick
 
Top