Function problem

D

Danielle

Hi, I am trying to find a way to take all info in ( ) and
make a new column. I can't use right or left function
because the text in the ( ) varies. Example:

Finance Officer (Matt Jones)

I need the Matt Jones in a new column.

Any suggestions?

Thanks
 
J

JohnI in Brisbane

Danielle,

Assuming a name is in A2, try this

=MID($A2,FIND("(",$A2)+1,FIND(")",$A2)-FIND("(",$A2)-1)

regards,

JohnI
 
D

Daniel.M

Hi Danielle,

With your name in A1:
=MID(A1,FIND("(",A1&"(")+1,FIND(")",A1&"()")-FIND("(",A1&"(")-1)

Regards,

Daniel M.
 
G

Guest

Its fairly easy using the arcane FIND function with MID
The formula below has your text in C5.

=MID(C5,FIND("(",C5)+1,FIND(")",C5)-FIND("(",C5)-1)


email me if you want an explanation on how it works.

Steve H
 

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