calculating letters

D

dave_laroche

I place letters in cells and I would like to calculate all the letters in a
column.

Dave
 
M

Max

One guess is that you want to count the number of times that each letter
appears in that col

Assuming source letters running in A1 down
In B1: =COUNTIF(A:A,A1)
Copy down
 
Top