Binary Squares

M

Mike Faulkner

OS: Windows XP
App: Excel 2003

I have been given some data exported from an SQL database. When opened in
Excel a cell contains Binary Squares or hard Returns (CHR10). I need to
convert these ASCII Chars to say a tilde (~).

Any help would be greatly appreciated.
 
S

Stefi

Open VBA (Alt+F11)!
View>Immediate window (Ctrl+G)
Enter
cells.Replace chr(10),"~"
Press Enter when cursor is on the above line!

Regards,
Stefi


„Mike Faulkner†ezt írta:
 
S

Stefi

I began to be glad to find a direct method to insert a non-printable
character in Replace dialog, but it failed for me. The only way I could
insert a chr(10) character in the Find field was to enter it in a cell and
Copy/Paste it in the Find field.

How did you do that?

Stefi


„Lori Miller†ezt írta:
Edit>Replace Find: [ctrl+j], Replace: ~

Mike Faulkner said:
OS: Windows XP
App: Excel 2003

I have been given some data exported from an SQL database. When opened in
Excel a cell contains Binary Squares or hard Returns (CHR10). I need to
convert these ASCII Chars to say a tilde (~).

Any help would be greatly appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top