Go Back   Trackpads Community > General Discussions > Computer and Technology > Microsoft Applications

Microsoft Applications Discussions about Windows and other MS Products such as Office

Reply
 
LinkBack Thread Tools
Old 10-25-2004, 16:00   #1 (permalink)
David French
Civilians

 
Default Re: Odd character

To all that supplied an answer:

Thank you all for your input to my dilema.
I did d/l and install the Cell View add-in. I can see where it may be
helpful but in this case it showed up as a 'Special Character'.
This really wasn't much help.

What I ended up doing is taking that column of cells and pasting it into
Word. From there I did a Show All Characters and it ended up being
recognized as a 2 'soft returns' or a Manual Line Breaks.
All I needed to do then was do a find and replace on 2 consecutive line
breaks and replace with a Tab.
Pasting that back into Excel as TEXT automatically created the second column
with the information separated as needed.

Gotta LOVE working with data!!!
I also love these newsgroups. They are a never ending source of new
information!!

Gratefully yours,
Dave French



"VENKAT" <venkat1926xxx@operamail.com> wrote in message
newspsga0lgj0spmm56@ppp76-156.dsl-chn.eth.net...
> see this url
> http://www.mvps.org/dmcritchie/excel/join.htm#trimall
> for this you also nee cell view addin and see this url
> http://www.cpearson.com/excel/CellView.htm
>
> this is for trimming the cell from odd nonprinable characters wwhich is
> normally present in webpages.
> =======================
>
> On Fri, 22 Oct 2004 13:55:32 -0400, David French <nospam@nospam.com>

wrote:
>
> > I have a file that has been exported from Outlook to an Excel file.
> > In some of the address fields the Address1 and Address2 lines are
> > separated
> > by some character that does not seem to be recognized by Excel.
> > In the cell it looks like a 'pipe' character that is bold...sometimes 2
> > of
> > them.
> > In the Formula Bar it appears to be a small box. It also pushes this
> > Address2 to a second line in the formula bar.
> > I need to import this to another program but that program chokes on this
> > character.
> >
> > Can anyone help me to clean this out of the data?
> >
> > Dave French
> >
> >

>
>
>
> --
> Using Opera's revolutionary e-mail client: http://www.opera.com/m2/



 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Trackpads Information
Click to Visit
Old 10-25-2004, 20:00   #2 (permalink)
Dave Peterson
Civilians

 
Default Re: Odd character

If you used Chip's CellView addin, you could see what the offending characters
are--not just that they were special.

In Chip's form, there's a line that shows the decimal/hexidecimal value for each
character.

(right above the Special row)

David French wrote:
>
> To all that supplied an answer:
>
> Thank you all for your input to my dilema.
> I did d/l and install the Cell View add-in. I can see where it may be
> helpful but in this case it showed up as a 'Special Character'.
> This really wasn't much help.
>
> What I ended up doing is taking that column of cells and pasting it into
> Word. From there I did a Show All Characters and it ended up being
> recognized as a 2 'soft returns' or a Manual Line Breaks.
> All I needed to do then was do a find and replace on 2 consecutive line
> breaks and replace with a Tab.
> Pasting that back into Excel as TEXT automatically created the second column
> with the information separated as needed.
>
> Gotta LOVE working with data!!!
> I also love these newsgroups. They are a never ending source of new
> information!!
>
> Gratefully yours,
> Dave French
>
> "VENKAT" <venkat1926xxx@operamail.com> wrote in message
> newspsga0lgj0spmm56@ppp76-156.dsl-chn.eth.net...
> > see this url
> > http://www.mvps.org/dmcritchie/excel/join.htm#trimall
> > for this you also nee cell view addin and see this url
> > http://www.cpearson.com/excel/CellView.htm
> >
> > this is for trimming the cell from odd nonprinable characters wwhich is
> > normally present in webpages.
> > =======================
> >
> > On Fri, 22 Oct 2004 13:55:32 -0400, David French <nospam@nospam.com>

> wrote:
> >
> > > I have a file that has been exported from Outlook to an Excel file.
> > > In some of the address fields the Address1 and Address2 lines are
> > > separated
> > > by some character that does not seem to be recognized by Excel.
> > > In the cell it looks like a 'pipe' character that is bold...sometimes 2
> > > of
> > > them.
> > > In the Formula Bar it appears to be a small box. It also pushes this
> > > Address2 to a second line in the formula bar.
> > > I need to import this to another program but that program chokes on this
> > > character.
> > >
> > > Can anyone help me to clean this out of the data?
> > >
> > > Dave French
> > >
> > >

> >
> >
> >
> > --
> > Using Opera's revolutionary e-mail client: http://www.opera.com/m2/


--

Dave Peterson
ec35720@msn.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2004, 04:00   #3 (permalink)
VENKAT
Civilians

 
Default Re: Odd character

frm cellview if you find chr(160) is the offending item you can remoe it
by using this code

With ActiveSheet.UsedRange
..Replace what:=Chr(160), replacement:=Chr(32)
End With

chr(32) is space.

in one case sometime back I even tried

replacemen:=chr(0) instead of chr(32)
=================================



On Mon, 25 Oct 2004 1320 -0400, David French <nospam@nospam.com> wrote:

> To all that supplied an answer:
>
> Thank you all for your input to my dilema.
> I did d/l and install the Cell View add-in. I can see where it may be
> helpful but in this case it showed up as a 'Special Character'.
> This really wasn't much help.
>
> What I ended up doing is taking that column of cells and pasting it into
> Word. From there I did a Show All Characters and it ended up being
> recognized as a 2 'soft returns' or a Manual Line Breaks.
> All I needed to do then was do a find and replace on 2 consecutive line
> breaks and replace with a Tab.
> Pasting that back into Excel as TEXT automatically created the second
> column
> with the information separated as needed.
>
> Gotta LOVE working with data!!!
> I also love these newsgroups. They are a never ending source of new
> information!!
>
> Gratefully yours,
> Dave French
>
>
>
> "VENKAT" <venkat1926xxx@operamail.com> wrote in message
> newspsga0lgj0spmm56@ppp76-156.dsl-chn.eth.net...
>> see this url
>> http://www.mvps.org/dmcritchie/excel/join.htm#trimall
>> for this you also nee cell view addin and see this url
>> http://www.cpearson.com/excel/CellView.htm
>>
>> this is for trimming the cell from odd nonprinable characters wwhich is
>> normally present in webpages.
>> =======================
>>
>> On Fri, 22 Oct 2004 13:55:32 -0400, David French <nospam@nospam.com>

> wrote:
>>
>> > I have a file that has been exported from Outlook to an Excel file.
>> > In some of the address fields the Address1 and Address2 lines are
>> > separated
>> > by some character that does not seem to be recognized by Excel.
>> > In the cell it looks like a 'pipe' character that is bold...sometimes

>> 2
>> > of
>> > them.
>> > In the Formula Bar it appears to be a small box. It also pushes this
>> > Address2 to a second line in the formula bar.
>> > I need to import this to another program but that program chokes on

>> this
>> > character.
>> >
>> > Can anyone help me to clean this out of the data?
>> >
>> > Dave French
>> >
>> >

>>
>>
>>
>> --
>> Using Opera's revolutionary e-mail client: http://www.opera.com/m2/

>
>




--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2004, 04:00   #4 (permalink)
VENKAT
Civilians

 
Default Re: Odd character

the code in my previous message is from mcritchies trimall code to which
the url has been given in one of the earlier messages


On Mon, 25 Oct 2004 1320 -0400, David French <nospam@nospam.com> wrote:

> To all that supplied an answer:
>
> Thank you all for your input to my dilema.
> I did d/l and install the Cell View add-in. I can see where it may be
> helpful but in this case it showed up as a 'Special Character'.
> This really wasn't much help.
>
> What I ended up doing is taking that column of cells and pasting it into
> Word. From there I did a Show All Characters and it ended up being
> recognized as a 2 'soft returns' or a Manual Line Breaks.
> All I needed to do then was do a find and replace on 2 consecutive line
> breaks and replace with a Tab.
> Pasting that back into Excel as TEXT automatically created the second
> column
> with the information separated as needed.
>
> Gotta LOVE working with data!!!
> I also love these newsgroups. They are a never ending source of new
> information!!
>
> Gratefully yours,
> Dave French
>
>
>
> "VENKAT" <venkat1926xxx@operamail.com> wrote in message
> newspsga0lgj0spmm56@ppp76-156.dsl-chn.eth.net...
>> see this url
>> http://www.mvps.org/dmcritchie/excel/join.htm#trimall
>> for this you also nee cell view addin and see this url
>> http://www.cpearson.com/excel/CellView.htm
>>
>> this is for trimming the cell from odd nonprinable characters wwhich is
>> normally present in webpages.
>> =======================
>>
>> On Fri, 22 Oct 2004 13:55:32 -0400, David French <nospam@nospam.com>

> wrote:
>>
>> > I have a file that has been exported from Outlook to an Excel file.
>> > In some of the address fields the Address1 and Address2 lines are
>> > separated
>> > by some character that does not seem to be recognized by Excel.
>> > In the cell it looks like a 'pipe' character that is bold...sometimes

>> 2
>> > of
>> > them.
>> > In the Formula Bar it appears to be a small box. It also pushes this
>> > Address2 to a second line in the formula bar.
>> > I need to import this to another program but that program chokes on

>> this
>> > character.
>> >
>> > Can anyone help me to clean this out of the data?
>> >
>> > Dave French
>> >
>> >

>>
>>
>>
>> --
>> Using Opera's revolutionary e-mail client: http://www.opera.com/m2/

>
>




--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Replacing Character tico31pl Microsoft Applications 1 09-07-2005 20:00
How to know if my character still exists? Max Gaming club 0 04-06-2005 00:00
Character encoding elyob Web Design 14 03-31-2005 00:00
Illegal Character Bill Allen, S.E. Web Design 2 02-23-2005 12:00
character encoding? T.J. Web Design 5 01-24-2005 00:00


Community Information
Options
Quick Options
Trackpads Non-Commercial Ad
Copyright Information Click to Visit
Time
Server Time
All times are GMT -4. The time now is 11:46.
Copyright
Copyright Information
The header is based off of work by Vipixel.com and modified by this site. Trackpads and the Trackpads Logo are both Registered Trademarks of Jason Edwards and cannot be used without prior written permission.  The only exception is as a link back to this site. Trackpads is a private website run by a small legion of volunteers, 3 dogs, 12.5 cats and an army of small, super smart, bio-engineered mice with pointy hats and tutu's. Search Engine Friendly URLs by vBSEO 3.2.0 RC7
Archive Links
Archive Links
Page generated in 1.88078 seconds with 19 queries