Extracting Text from a field

Z

Zuzeppeddu

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
 
G

Guest

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
 

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