Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Jun 13, 10:51*am, Mike wrote:
Say I have this: T1 T4 T20 T100 I want to create a col that has it like this: 1 4 20 100 any simple way to do this? Define "simple". One way.... Put the following into a parallel cell and copy down, assuming "T1" is in A1: =MID(A1,2,999) Note: That means 1, 4, 20 etc are strings. If you want numeric values: =--MID(A1,2,999) The double-negative (--) converts text to numeric. Another way.... Select the cells with T1, T4, T20 etc, click Date Text To Columns. In the first menu, select Fixed Width, then click Next. In the second menu, click on the data preview "ruler" to create a separator between the first character and the rest of the text; then click Next. In the final menu, select the first column and click "Do not import (skip)". If you want the 1, 4 20 etc to be text, select the second column and click Text. In either case, then press Finish. |