Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to split sizes into length and width.
i have the sizes in format 10x10 and want to split them into 2 colums and lose the x. to complicate it more some sizes go into decimal points. any ideas. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Select the column
data|text to columns delimited By other (and type X) help needed wrote: I need to split sizes into length and width. i have the sizes in format 10x10 and want to split them into 2 colums and lose the x. to complicate it more some sizes go into decimal points. any ideas. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you always have an "x" separating the two numbers with no spaces,
then the following formulae will split the first and second numbers, assuming your data is in cell A1: first number: =VALUE(LEFT(A1,FIND("x",A1)-1)) second number: =VALUE(RIGHT(A1,LEN(A1)-FIND("x",A1))) FIND is case sensitive - you might prefer to use SEARCH instead. Hope this helps. Pete help needed wrote: I need to split sizes into length and width. i have the sizes in format 10x10 and want to split them into 2 colums and lose the x. to complicate it more some sizes go into decimal points. any ideas. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get ONLY new info from 1 Worksheet to another automatical | Excel Worksheet Functions | |||
Concatenating info from several cells into the one above | Excel Discussion (Misc queries) | |||
how to seperate into columns? | Excel Worksheet Functions | |||
place text seperated by a space in a column into seperate columns | Excel Worksheet Functions | |||
How do I compare two columns on seperate sheets and replace text . | Excel Worksheet Functions |