How can I find the alpha numeric codes in excel please,Thank you.

C

Crazylady_2

Can someone please tell me how I can find the alpha numeric codes in excel
and also are they english,greek or other ? Thank you.
 
C

Crazylady_2

R, I did work all the uk codes out for myself (a long process lol) but
wondered if there was a preset formula in excel. You have been Very helpful
thank you so very much.
 
J

Jim May

If you need to use in VBA:
It goes by CHR, Not Char;

Dim MyChar
MyChar = Chr(65) ' Returns A.
MyChar = Chr(97) ' Returns a.
MyChar = Chr(62) ' Returns >.
MyChar = Chr(37) ' Returns %.
 
D

Dave Peterson

If you're using xl2002+, maybe Insert|symbol would help.

Chip Pearson has an addin that may help (if you're using xl2k or lower).
http://www.cpearson.com/excel/download.htm
(look for Symbolizer and make sure you get the correct version)

Or even use Windows own CharMap:
(Windows start button|run|Charmap)

And if you're looking to find out what's already in a cell, Chip Pearson has a
very nice addin that can show you those codes:
http://www.cpearson.com/excel/CellView.htm
 
C

Crazylady_2

Dave Peterson said:
If you're using xl2002+, maybe Insert|symbol would help.

Chip Pearson has an addin that may help (if you're using xl2k or lower).
http://www.cpearson.com/excel/download.htm
(look for Symbolizer and make sure you get the correct version)

Or even use Windows own CharMap:
(Windows start button|run|Charmap)

And if you're looking to find out what's already in a cell, Chip Pearson has a
very nice addin that can show you those codes:
http://www.cpearson.com/excel/CellView.htm

Thank you so very much for your help and the links.
 
Top