hmm it works for me.
So say in A1 you have a*b*c*d with * representing the chr(127)
- select A1 and goto to menu Data > Text-To-Column
- in the dialog Text-To-Column, step 1/3, you choose Delimited
- step2/3: check 'Other', enter ALT+0127, Uncheck 'Treat COnsec Delimiters,
set TextQualifier to None.
- step 3/3, make sure each column is NOT set to 'Do not Import column' by
clicking on each column.
Do you get the result:
1.
a b*c*d
with 'a' in one column and b*c*d in the next one
In this case i would check if other * in the string are really chr(127)
with the formula:
= ( char(127) = mid(A1,4,1) ) where 4 is the position of a * in the string
2.
or do you just get
a
'a' in one column and the rest has diseapeared, in which case i would
check Step3/3 above.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com>
"QDZF" wrote:
> When I did this, only the first section broke into the new column. The rest
> did not appear at all. There's 6 of these breaks in the string. How do I
> get the others to break into new columns?
>
> "sebastienm" wrote:
>
> > Hi,
> > No need to Replace; you can directly use the 'Text To Column' feature. As
> > the delimiter, choose 'Other' and type in the char 127 by typing: ALT + 0127,
> > ie type 0127 WHILE pressing the ALT.
> > --
> > Regards,
> > Sébastien
> > <http://www.ondemandanalysis.com>
> >
> >
> > "QDZF" wrote:
> >
> > > HAVE A FILE WITH A STRING OF TEXT BROKEN BY CHAR(127). I WOULD LIKE TO BREAK
> > > THAT STRING AT EACH OCCURENCE OF CHAR(127). EASIEST WAY I COULD THINK OF WAS
> > > TO REPLACE IT WITH A SYMBOL AND THEN USE TEXT TO COLUMNS. IS THERE A BETTER
> > > WAY THAN THIS?
Bookmarks