Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
To extract the number:
=MID(A1,FIND("|",A1)+2,255) Or, if the number is *always* 10 digits long: =RIGHT(A1,10) Biff "T. Valko" wrote in message ... 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 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That is fantastic, thank you so much!!
regards Martina "T. Valko" wrote: To extract the number: =MID(A1,FIND("|",A1)+2,255) Or, if the number is *always* 10 digits long: =RIGHT(A1,10) Biff "T. Valko" wrote in message ... 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 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
Biff "Martina" wrote in message ... That is fantastic, thank you so much!! regards Martina "T. Valko" wrote: To extract the number: =MID(A1,FIND("|",A1)+2,255) Or, if the number is *always* 10 digits long: =RIGHT(A1,10) Biff "T. Valko" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extraction Question | Excel Discussion (Misc queries) | |||
Word Extraction | Excel Discussion (Misc queries) | |||
data extraction | Excel Discussion (Misc queries) | |||
data extraction | New Users to Excel | |||
Data Extraction | Setting up and Configuration of Excel |