text Formula

  • Thread starter Thread starter Carpe Diem
  • Start date Start date
C

Carpe Diem

Hi,

I have the following data in a table:
0200CO100701
0200CO1007011
0200/72100001

And I woold like to choose only the rows thata as "/" in this column
(in this example the third number), and give me only the value
"72100001"

Thank you.
 
Carpe said:
Hi,

I have the following data in a table:
0200CO100701
0200CO1007011
0200/72100001

And I woold like to choose only the rows thata as "/" in this column
(in this example the third number), and give me only the value
"72100001"

Thank you.

Something like this works:

=MID(A3;FIND("/";A3)+1;LEN(A3)-FIND("/";A3))

CoRrRan
 

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

Back
Top