How can I convert the numbers in the range 1 through 26 to their respective letter position in the alphabet?
1 = A
2 = B
…
26 = Z
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CHR(#)will give you the ASCII character, you just need to offset it based on the ASCII table:e.g. A = 65, so you will need to add 64 to 1: