View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike Mike is offline
external usenet poster
 
Posts: 3,101
Default Extracting Text from a field

You need a helper column.

Assuming your data are in column A1 down put this in B1 and drag down as
required

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

Will that do?

Mike

"Zuzeppeddu" wrote:

Hi

I want to extract Text only data from a column. A sample is as below:

14 Nicholls Point Park Grove
56 William Morley Close
9a Geere Road
40 William Morley Crt
5 Croydon Road
47a Liddington Road
11 Shiers Street

I want to extract all the text. So 47a Liddington Road would give me
'a Liddington Road'.

Any help would be very appreciated.

Thanks