Need to remove text in specific place

S

Scott

I need to remove the text in the left most part of the cell up to and
including the point that includes a space.

For example the cell reads: 51253 Axle Housing

I want the 51253 and the space go away.

Thanks
 
J

John C

Assumptions: 1> There is always at least 1 space, and 2> You always want to
remove the text up to and including the first space only.

=RIGHT(A1,LEN(A1)-FIND(" ",A1))

Hope this helps.
 
P

Peo Sjoblom

Try this (assume A1 is the cell with the data)

=MID(A1,FIND(" ",A1)+1,255)

--


Regards,


Peo Sjoblom
 
S

Scott

That did it, thank you very much!

Scott

John C said:
Assumptions: 1> There is always at least 1 space, and 2> You always want to
remove the text up to and including the first space only.

=RIGHT(A1,LEN(A1)-FIND(" ",A1))

Hope this helps.
 

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