summing letters in column

i8ig

Board Regular
Joined
Jul 17, 2007
Messages
122
What formula do you need to sum up the numbers 'a' 'c' letters in a column?
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Do you mean there will be just a single letter in a cell, either a or c, or are you trying to count the a's and c's in words in the cell?

If it's just single letter:
=COUNTIF(A1:A100,"a")

and
=COUNTIF(A1:A100,"c")
 
Upvote 0
Do you mean you want to count how many times the letters A and C appear in a column? IF so do you want just A or just C or a combined total of both!?
 
Upvote 0
If you want to count either/or then:

=SUM(COUNTIF(A:A,{"A","C"}))

If you want to count separately, then use Hotpepper's suggestion.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,388
Members
448,957
Latest member
Hat4Life

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