extracting substring

  • Thread starter Thread starter Rajesh
  • Start date Start date
R

Rajesh

Hi,

Please find the follwoing data
abcd efg [R51K]
abc efg[R52E]
abcd efghij [R31K]

From this i need the data without [Rxxx].

please suggest how to do this
Thanks
 
Thank you so much Jacob. it works...

Jacob Skaria said:
Try

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

OR

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

--
Jacob


Rajesh said:
Hi,

Please find the follwoing data
abcd efg [R51K]
abc efg[R52E]
abcd efghij [R31K]

From this i need the data without [Rxxx].

please suggest how to do this
Thanks
 

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

Similar Threads

Please Help!!! 3
moving data dynamically based on empty cell 1
List if 3
Finding latest match in range 9
LINE INSERTION IN TEXT !!! 3
Excel 2000 issue. 1
advance filter 6
Help with Right$ Expression 1

Back
Top