View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Split numeric and text

Assuming the numeric portion is *always* a contiguous string. In other
words, you won't have something like this:

123 45 678 Peter

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

--
Biff
Microsoft Excel MVP


"Murali Rajagopal" <Murali wrote in
message ...
I have a numeric and text in the same cell, I want to remove the nummeric
and
I want the text to be in the next column.. Please help how to do this..

for example: Cell A1 contains some numeric and text with space inbetween
nummeric and text ie,

cell A1 - 5823 Peter
cell A2 - 23 John

I want only the names peter and John in the next cell ie, B1 and B2..

Thanks..