How to Remove Square Character?

InfrequentVisitor

New Member
Joined
Mar 30, 2016
Messages
28
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hello,

The special character I'm referencing won't appear in my post when I paste the Excel data as HTML. It essentially looks like a larger version of the square special character in the symbol library. When I click on the cell, the formula bar displays the square with a question mark in it.

This square character is in an Oracle extract and I have to manually scroll through the data to delete it. I can't paste it into the Replace function, because it pastes as nothing; however, the square still impacts data if I don't delete it.

Respectfully,

Eric
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Can you tell us which ASCII character it is?
You can find out like this. Let's say it is appearing as the first character in cell A11.
Then use a formula like this to return the ASCII number of the character:
Code:
=CODE(LEFT(A11,1))
 
Upvote 0
If the answer to what Joe4 has suggested is 63 replace CODE with UNICODE
=UNICODE(LEFT(A11,1))
 
Upvote 0
All,

I learned much more than I thought I would.

It's code 12. The Clean function worked quite well. The Unicode function doesn't appear to exist in 2010 Excel, but I can always use it at home w/ my 2013/16.

Thank you,

Eric
 
Upvote 0

Forum statistics

Threads
1,215,365
Messages
6,124,513
Members
449,168
Latest member
CheerfulWalker

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top