Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I am working on an excel file which has a column that contains product names + serial numbers. Dont know how but someone combined that data. they used to be in different columns but now they are in same column and have no spaces between them. cells have names like this, productname1345 is there any easy way to scan through the coulmn and at least seperate the data like productname 1345 after this step i think i can handle it:) thanx for help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
With your string in A1 put this in C1 to extract the numbers =LOOKUP(10^23,--("0"&MID(A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"0 123456789")),ROW($1:$10000)))) Put this in B1 for the name =LEFT(A1,LEN(A1)-LEN(C1)) Mike "mns" wrote: Hi, I am working on an excel file which has a column that contains product names + serial numbers. Dont know how but someone combined that data. they used to be in different columns but now they are in same column and have no spaces between them. cells have names like this, productname1345 is there any easy way to scan through the coulmn and at least seperate the data like productname 1345 after this step i think i can handle it:) thanx for help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LOOKUP(99^99,--("0"&MID(A10,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A10& "0123456789")),ROW(INDIRECT("1:"&LEN(A10))))))
and =TRIM(SUBSTITUTE(A10,B10,"")) -- __________________________________ HTH Bob "mns" wrote in message ... Hi, I am working on an excel file which has a column that contains product names + serial numbers. Dont know how but someone combined that data. they used to be in different columns but now they are in same column and have no spaces between them. cells have names like this, productname1345 is there any easy way to scan through the coulmn and at least seperate the data like productname 1345 after this step i think i can handle it:) thanx for help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Seperating Text from Columns | Excel Discussion (Misc queries) | |||
Seperating Text from Columns | Excel Discussion (Misc queries) | |||
Seperating text | Excel Discussion (Misc queries) | |||
Seperating Numbers from Letters in Excel | Excel Worksheet Functions | |||
Seperating text if there's more than a one space between them | Excel Discussion (Misc queries) |