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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
choose font <symbols> and type a you will get alpha

character map in system tools will have alphanumeric codes in English

=char(65) is A
=char(90) is Z
=char(97) is a etc
 
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.
 
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 %.
 
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
 
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.
 
Back
Top