Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a formula to pull only numbers and one to pull oinly letters from a
cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In cell B2 type
=LEFT(A2,LEN(A2)-FIND(" ",A2,1)) In Cell B3 type =RIGHT(A2,LEN(A2)-FIND(" ",A2,1)) "Jamie" wrote: I need a formula to pull only numbers and one to pull oinly letters from a cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This will return *only* the *first* contiguous set of numbers (*no* parens).
=LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A2&"012345 6789")),ROW(INDIRECT("1:"&LEN(A2))))) This subtracts that *first* set of numbers, and returns what's left over: =SUBSTITUTE(A2,LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A2&"012345 6789")),ROW(INDIRECT("1:"&LEN(A2))))),"") -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Jamie" wrote in message ... I need a formula to pull only numbers and one to pull oinly letters from a cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try these:
=LEFT('Worksheet A'!A2,FIND(")",'Worksheet A'!A2)) =MID('Worksheet A'!A2,FIND(")",'Worksheet A'!A2)+2,999) HTH, Elkar "Jamie" wrote: I need a formula to pull only numbers and one to pull oinly letters from a cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This would subtract the contents of the cell where you entered the first
formula. Makes the second formula a little shorter.<g =SUBSTITUTE(A2,B2,"") -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "RagDyeR" wrote in message ... This will return *only* the *first* contiguous set of numbers (*no* parens). =LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A2&"012345 6789")),ROW(INDIRECT("1:"&LEN(A2))))) This subtracts that *first* set of numbers, and returns what's left over: =SUBSTITUTE(A2,LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A2&"012345 6789")),ROW(INDIRECT("1:"&LEN(A2))))),"") -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Jamie" wrote in message ... I need a formula to pull only numbers and one to pull oinly letters from a cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
OK - I apologize - the example I gave you was just an example and not exactly
what I need. I tried to follow your formula as a template for my specific need and had trouble, Let me explain exactly what my situation is: Scenario: Sheet 2, Cell B50= Change0.320 I want: Sheet 1, Cell C27 to = 0.320 Worksheet B, Cell D27 to = Change "AKphidelt" wrote: In cell B2 type =LEFT(A2,LEN(A2)-FIND(" ",A2,1)) In Cell B3 type =RIGHT(A2,LEN(A2)-FIND(" ",A2,1)) "Jamie" wrote: I need a formula to pull only numbers and one to pull oinly letters from a cell and put them in another cell. Scenario: Worksheet A, Cell A2= (7) apples I want: Worksheet B, Cell B2 to = (7) Worksheet B, Cell B3 to = apples |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 17 May 2007 11:06:00 -0700, Jamie
wrote: OK - I apologize - the example I gave you was just an example and not exactly what I need. I tried to follow your formula as a template for my specific need and had trouble, Let me explain exactly what my situation is: Scenario: Sheet 2, Cell B50= Change0.320 I want: Sheet 1, Cell C27 to = 0.320 Worksheet B, Cell D27 to = Change And what was the problem with RagDyer's suggestion? =LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9}, A2&"0123456789")),ROW(INDIRECT("1:"&LEN(A2))))) --ron |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I hadn't seen that post when I posted again. I'm about to try it. Keep your
pants on. "Ron Rosenfeld" wrote: On Thu, 17 May 2007 11:06:00 -0700, Jamie wrote: OK - I apologize - the example I gave you was just an example and not exactly what I need. I tried to follow your formula as a template for my specific need and had trouble, Let me explain exactly what my situation is: Scenario: Sheet 2, Cell B50= Change0.320 I want: Sheet 1, Cell C27 to = 0.320 Worksheet B, Cell D27 to = Change And what was the problem with RagDyer's suggestion? =LOOKUP(99^99,--MID(A2,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9}, A2&"0123456789")),ROW(INDIRECT("1:"&LEN(A2))))) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pulling text from a cell | Excel Worksheet Functions | |||
function for pulling certain numbers from a cell? | Excel Worksheet Functions | |||
extract number and use in formula from text & numbers in cell | Excel Worksheet Functions | |||
pulling text into a sum formula | Excel Worksheet Functions | |||
Help creating a formula, pulling from a set of static numbers. | Excel Worksheet Functions |