Counting Formula

K

Karen Smith

I have a series of cells (B14..B17) that either say Yes or No. I want to
total up the Yes's to tell me how many of them there are. Can anyone tell me
a formula for that?
 
K

Kevin B

Use the COUNTIF function:

=COUNTIF(A1:A11,"=Yes")

Change the A1:A11 to match the range you need to count.
 
Top