Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to slit the following text info across three columns
xxxxx yyyyyy zzzzzzzzzzzzzzzz Is there a function that will allow me to do this without having to type all the info into separate columns Can I just copy it all into three columns and trim out the all but the xxxxx and then in the next column yyyyyy Juswant |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way.Copy the formulas and drag down as required..
In B1 =TRIM(LEFT(TRIM(A1),FIND(" ",TRIM(A1)))) In C1 =LEFT(TRIM(SUBSTITUTE(A1,B1,"")),FIND(" ",TRIM(SUBSTITUTE(A1,B1,)))) In D1 =TRIM(SUBSTITUTE(SUBSTITUTE(A1,B1,),C1,)) If this post helps click Yes --------------- Jacob Skaria "Juswant Rai" wrote: I am trying to slit the following text info across three columns xxxxx yyyyyy zzzzzzzzzzzzzzzz Is there a function that will allow me to do this without having to type all the info into separate columns Can I just copy it all into three columns and trim out the all but the xxxxx and then in the next column yyyyyy Juswant |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you can use "text to columns" option available in excel.
On Jun 13, 12:49*pm, Juswant Rai <Juswant wrote: I am trying to slit the following text info across three columns xxxxx yyyyyy zzzzzzzzzzzzzzzz Is there a function that will allow me to do this without having to type all the info into separate columns Can I just copy it all into three columns and trim out the all but the xxxxx and then in the next column yyyyyy Juswant |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
help me in trimming the leading spaces of text in columns. TRIM is not
deleting the spaces in the begining of the text. any help? "muddan madhu" wrote: you can use "text to columns" option available in excel. On Jun 13, 12:49 pm, Juswant Rai <Juswant wrote: I am trying to slit the following text info across three columns xxxxx yyyyyy zzzzzzzzzzzzzzzz Is there a function that will allow me to do this without having to type all the info into separate columns Can I just copy it all into three columns and trim out the all but the xxxxx and then in the next column yyyyyy Juswant |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If TRIM doesn't remove your leading spaces, then the characters are
presumably not spaces. Does =CODE(LEFT(A1)) return 32? If not, the character isn't a space. It may be a non-breaking space (160 instead of 32). You may need to use a SUBSTITUTE function. -- David Biddulph Sri wrote: help me in trimming the leading spaces of text in columns. TRIM is not deleting the spaces in the begining of the text. any help? "muddan madhu" wrote: you can use "text to columns" option available in excel. On Jun 13, 12:49 pm, Juswant Rai <Juswant wrote: I am trying to slit the following text info across three columns xxxxx yyyyyy zzzzzzzzzzzzzzzz Is there a function that will allow me to do this without having to type all the info into separate columns Can I just copy it all into three columns and trim out the all but the xxxxx and then in the next column yyyyyy Juswant |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Identifying text to split into columns | Excel Worksheet Functions | |||
Text to Columns or TRIM? | Excel Discussion (Misc queries) | |||
Text to columns, split at first space only | New Users to Excel | |||
split text , insert to columns | Excel Discussion (Misc queries) | |||
How do I split 16 char text 'XX XXX= +. X' into 16 columns | Excel Discussion (Misc queries) |