assign number value to text

  • Thread starter Thread starter 2fast
  • Start date Start date
2

2fast

hi, i want to know if is possible to asign a number value to a letter,

for example, if i want to make A to have a value 4 (A=4). so when
write the letter E, it gives a 5 number value, so i can sum all letter


A=4
B=3
C=2

A B A = 11
(4)+(3)+(4) = 11

Thanks for all your help!
 
Use the code function:

=CODE("A")-64 returns 1
=CODE("B")-64 returns 2
:
=CODE("Z")-64 returns 26
 

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

Back
Top