Thread: Extraction
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Extraction

To extract the number:

=MID(A1,FIND("|",A1)+2,255)

To extract the name:

=LEFT(A1,FIND("(",A1)-2)

Biff

"Martina" wrote in message
...
Dear Experts,
I have one cell which contains the following string of characters exactly
in
this format:

Smith, Jane (jc162964) | 0616025915

Can I use excel to extract the last ten digits and put them into another
cell
AND
Can I use excel to extract the Smith, Jane part into another cell?
regards
Martina