Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
When I try to use Text To Columns to split a long series of numbers into
several columns of numbers, if one of the numbers starts with a zero it isn't retained. The zero gets dropped. I tried formatting the original numbers as text - it didn't work. Is there a way to split a numerical string into several columns and retain leading zeroe? |
#2
![]() |
|||
|
|||
![]()
Hi Peggy,
The final screen of the TextToColumns wizard gi ves you the option of selecting the format for each column. Select the text format option and all should be well. --- Regards, Norman "Peggy" wrote in message ... When I try to use Text To Columns to split a long series of numbers into several columns of numbers, if one of the numbers starts with a zero it isn't retained. The zero gets dropped. I tried formatting the original numbers as text - it didn't work. Is there a way to split a numerical string into several columns and retain leading zeroe? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I may be missing something but I don't understand how this fixes the problem.
I'm trying to seperate 9 digits out into 9 columns. All of them have leading zeros that need to be retained. But when I go to TextToColumns it doesn't even bring in the leading zeros into the data preview. Selecting Text on step 3 of 3 doesn't change anything. There's no delimiter so I'm trying to do it by fixed width unless you have another suggestion for that. Thanks "Norman Jones" wrote: Hi Peggy, The final screen of the TextToColumns wizard gi ves you the option of selecting the format for each column. Select the text format option and all should be well. --- Regards, Norman "Peggy" wrote in message ... When I try to use Text To Columns to split a long series of numbers into several columns of numbers, if one of the numbers starts with a zero it isn't retained. The zero gets dropped. I tried formatting the original numbers as text - it didn't work. Is there a way to split a numerical string into several columns and retain leading zeroe? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming you have a text string in A1 of 010203040
DataText to ColumnsFixed WidthNext With cursor draw your split lines so's you have 9 columns then Next The first column will be selected(black highlight). Hold SHIFT key and click on column 9 which selects all. Column Data FormatText and Finish. You can do this with a formula............I think Biff posted one a while back. Search the google archives for splitting into multiple cells. Gord Dibben MS Excel MVP On Wed, 10 Jun 2009 14:36:01 -0700, kesse wrote: I may be missing something but I don't understand how this fixes the problem. I'm trying to seperate 9 digits out into 9 columns. All of them have leading zeros that need to be retained. But when I go to TextToColumns it doesn't even bring in the leading zeros into the data preview. Selecting Text on step 3 of 3 doesn't change anything. There's no delimiter so I'm trying to do it by fixed width unless you have another suggestion for that. Thanks "Norman Jones" wrote: Hi Peggy, The final screen of the TextToColumns wizard gi ves you the option of selecting the format for each column. Select the text format option and all should be well. --- Regards, Norman "Peggy" wrote in message ... When I try to use Text To Columns to split a long series of numbers into several columns of numbers, if one of the numbers starts with a zero it isn't retained. The zero gets dropped. I tried formatting the original numbers as text - it didn't work. Is there a way to split a numerical string into several columns and retain leading zeroe? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With "010203040506070809" in A1, try this:
=IF(LEN($A1)<COLUMNS($A:A),"",MID($A1,2*COLUMNS($A :A)-1,2)) And copy across as needed. Just places 2 characters in each column 'til you run out of data. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "kesse" wrote in message ... I may be missing something but I don't understand how this fixes the problem. I'm trying to seperate 9 digits out into 9 columns. All of them have leading zeros that need to be retained. But when I go to TextToColumns it doesn't even bring in the leading zeros into the data preview. Selecting Text on step 3 of 3 doesn't change anything. There's no delimiter so I'm trying to do it by fixed width unless you have another suggestion for that. Thanks "Norman Jones" wrote: Hi Peggy, The final screen of the TextToColumns wizard gi ves you the option of selecting the format for each column. Select the text format option and all should be well. --- Regards, Norman "Peggy" wrote in message ... When I try to use Text To Columns to split a long series of numbers into several columns of numbers, if one of the numbers starts with a zero it isn't retained. The zero gets dropped. I tried formatting the original numbers as text - it didn't work. Is there a way to split a numerical string into several columns and retain leading zeroe? |
#6
![]() |
|||
|
|||
![]()
I don't know if this is still in need of resolving, but one thing to note is that in step 3, you need to actually select all of the columns in the preview and change each column to text. If you just select the text option, it will only change the first column to text but any remaining columns will remain under General.
Quote:
|
#7
![]() |
|||
|
|||
![]()
Yes, there is a way to split a numerical string into several columns and retain leading zeros. Here's how you can do it:
That's it! You have successfully split a numerical string into several columns and retained leading zeros.
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Leading zeros | Excel Discussion (Misc queries) | |||
save text field w/ leading zeros in .csv format & not lose zeros? | Excel Discussion (Misc queries) | |||
zero supress leading zeros when chg format from text to number | Excel Worksheet Functions | |||
Text to Columns - moves text up | Excel Discussion (Misc queries) | |||
Text To Columns | Excel Worksheet Functions |