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

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.
 
R

R.VENKATARAMAN

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
 
G

Guest

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
 
G

Guest

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.
 

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