SEARCH and LEN

  • Thread starter Thread starter ACarella
  • Start date Start date
A

ACarella

I am trying to extract everything from the right into a column and then
everything from the left into another column. How would I do that?

FISHER=12345 FISHER 12345
ABCDE 50 .CPR = 123 ABC DEF ABCDE 50 .CPR 123 ABC DEF

Thank you
 
Assuming data in A1

=LEFT(A1,"FIND("=",A1)-1)

and

=REPLACE(A1,1,FIND("=",A1),"")

If you want to eliminate and surplus spaces then enclose the above formulas
in a TRIM function
 
I do not understand how to do what you have listed below. But would like
to. Can you explain. Your other response also worked.
Thank you.
 
Select the column with the data
Goto menu Data>Text to columns..
Click Delimited, then Next
Click the Other box, and input = in the next box
OK out
 
I will check that out.
thank you.

Bob Phillips said:
Select the column with the data
Goto menu Data>Text to columns..
Click Delimited, then Next
Click the Other box, and input = in the next box
OK out


--
__________________________________
HTH

Bob
 

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