i need to make a tally

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a table that has cells in colimns that display letters, for every 'k'
i need to add 1 to a total
 
paul_88 said:
i have a table that has cells in colimns that display letters, for every 'k'
i need to add 1 to a total

Try something like this:

=COUNTIF(A1:A100,"k")

Change the A1:A100 to whatever your column is and the result of this
formula will be the number you want to add.
 
Back
Top