Remove symbol/icon from user name column

JugglerJAF

Active Member
Joined
Feb 17, 2002
Messages
297
Office Version
  1. 365
Platform
  1. Windows
I have some data which can occasionally contain some unusual looking characters which appear to be icons or symbols (see below).

I have tried to identify these using the CODE function, but they both return a value of 63 (which is equivalent to ?), but the value in A4 which does not need to be amended also returns CODE 63.

Is there any way I can identify these "icon/symbol" characters so that I can remove them with a macro? I have tried using the CLEAN function but that doesn't remove these characters.

Book2
ABCD
1NAMELEFT(1)CODECODE to CHAR
2🏭 Adam Zapple🏭63?
3🌎 Pepper Mintz🌎63?
4Łydia DustblińŁ63?
5Angus MacoatupA65A
6Barb DwyerB66B
Sheet1
Cell Formulas
RangeFormula
B2:B6B2=LEFT(A2,1)
C2:C6C2=CODE(B2)
D2:D6D2=CHAR(C2)
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Upvote 0
You could use
Excel Formula:
=UNICODE(B2)
to find out what the characters are.
 
Upvote 0
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,344
Messages
6,124,407
Members
449,157
Latest member
mytux

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