Calculate ASCII value of a string

MrByte

Board Regular
Joined
Feb 9, 2007
Messages
167
Office Version
  1. 365
I want to get the sum of a string using the ASCII value. I tried this
Code:
=SUM(MID(A1,1,LEN(A1)))
but of course I get the #VALUE! error. So for example the word Black will get a sum of 477. The ASCII values of each letter are 66 108 97 99 107 and when summed I get the 477.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Try

=SUMPRODUCT(CODE(MID(A1,ROW($A$1:INDEX($A:$A,LEN(A1))),1)))

Do not adjust the part I highlighted blue, it has no relation to your data.
 
Last edited:
Upvote 0
Thanks! it worked for all but one that I have listed right now. The word being Camo gives me #VALUE! error. Any ideas? Oh and the position in the column is the last one at row 7.
 
Upvote 0
Recopy the formula from my post, I edited it slightly to add absolute references..
It would have gotten messed up when filled down without the absolute refs..
 
Upvote 0
Got it thanks for the quick response!! Always a pleasure posting here. :cool:
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,841
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top