View Single Post
  #3   Report Post  
Alex Delamain
 
Posts: n/a
Default


find will enable you to get the location of the blank spaces in the text
string, which can then be used with =left, =right, =mid and =len. The
resulting formulae can be a bit cumbersome but if the ID and area code
are always the same number of characters they can be simplified.

These should work for variable lengths:

Cell A1 is: 1531 dorset constable
=LEFT(A1,FIND(" ",A1)) returns 1531
=MID(A1,FIND(" ",A1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1))
returns Dorset
=RIGHT(A1,LEN(A1)-FIND(" ",A1,FIND(" ",A1)+1)) returns Constable

Hope this helps


--
Alex Delamain
------------------------------------------------------------------------
Alex Delamain's Profile: http://www.excelforum.com/member.php...o&userid=11273
View this thread: http://www.excelforum.com/showthread...hreadid=386055