@T. Valko
Could you provide a formula? I'm curious.
M.
Here are a couple of examples.
This one needs array entered**:
=COUNT(FIND(MID(A2,ROW(INDIRECT("1:"&LEN(A2))),1),"ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
You can also use a named string:
- Letters
- Refers to: ="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Then, array entered**:
=COUNT(FIND(MID(A2,ROW(INDIRECT("1:"&LEN(A2))),1),Letters))
** array formulas need to be entered using the key
combination of CTRL,SHIFT,ENTER (not just ENTER).
Hold down both the CTRL key and the SHIFT key
then hit ENTER.
And this normally entered version for upper case characters:
=SUMPRODUCT(--(ABS(CODE(MID(A2,ROW(INDEX(A:A,1):INDEX(A:A,LEN(A2))),1))-77.5)<=12.5))
And this normally entered version for lower case characters:
=SUMPRODUCT(--(ABS(CODE(MID(A2,ROW(INDEX(A:A,1):INDEX(A:A,LEN(A2))),1))-109.5)<=12.5))