Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a formula that will extract only the numbers that immediately follow
"E" in a string? For example, the formula would get "1787" from this string: http://www.glassdoor.com/Jobs/First-...10_KO11,28.htm |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If the number is always after "_IE" then the below formula would work
=LEFT(MID(A1,FIND("_IE",A1)+3,99),FIND(".",MID(A1, FIND("_IE",A1)+3,99))-1) If the number is the first numeric in the string the below should work =LEFT(MID(A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&" 0123456789")),LEN(A1)),FIND(".",MID(A1,MIN(SEARCH( {0,1,2,3,4,5,6,7,8,9},A1&"0123456789")),LEN(A1)))-1) If this post helps click Yes --------------- Jacob Skaria "paul c" wrote: Is there a formula that will extract only the numbers that immediately follow "E" in a string? For example, the formula would get "1787" from this string: http://www.glassdoor.com/Jobs/First-...10_KO11,28.htm |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Ron Rosenfeld wrote...
paul c <paul wrote... Is there a formula that will extract only the numbers that immediately follow "E" in a string? .... In either event, this can be done easily with a User Defined Function. . . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extract text within two specific values within a cell | Excel Worksheet Functions | |||
Extract a specific portion of text as new cell value | Excel Discussion (Misc queries) | |||
Extract value from Specific Cell | Excel Worksheet Functions | |||
I need to search for then extract a specific portion of cell data... | Excel Worksheet Functions | |||
how to format only a specific character or number in each cell withina range of cells | Excel Worksheet Functions |