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
 

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