Want to put text in "()" from column A to Column B

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a huge list of accronyms and then the spelled out version in column A,
i.e.: Lead (pb). I want the "(pb)" to be removed from column A and put into
column B. I bascially need the accronym in a separate column for all of my
entries. Is there an easy way to do this?

Thanks
 
Hi

Assuming your first entry, lead (pb) is in cell A1

Use the following to extract the name in B1
=LEFT(A1,FIND("(",A1)-2) result = lead

Use to extract the acronym in C1
=MID(A1,FIND("(",A1),10) result = (pb)

so your result will be

A B C
1 Lead (PB) Lead (pb)

Use as necessary, HTH :-)
 
Try this, assuming the tilde ~ character does not appear in any of your data
(if so, choose a different symbol that does not appear):

Do a Find/Replace on your data (column A)
Find What: (
Replace With: ~(
Then, select Column A
From the Data Menu, select "Text to Columns"
Select Data Type "Delimited"
Click NEXT
Uncheck all dellimiters except "Other"
Enter: ~
Click FINISH

That should do it.

HTH,
Elkar
 

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