counting responses - please help

W

woodhands

I have survey results in a table - 40 columns x 315 rows (peopl
surveyed)
I want to count the responses, e.g. Q #1 had 4 choices - S, L, H or W.
How many in column 1 answered "S"? How many "L"? Etc.

I have tried SumA, CountA, and DCountA and cannot derive a formula.
For instance =COUNTA(H3:H315,"H)") just returns the number o
responses in column H - not just the responses with "H" in the cells.

Please help !

Here is a sample column showing a few results:
S
[blank]
L
S
S
H
S
S
W
S

My formula would show for this segment: S had 6 responses, L had 1,
had 1 and H had 1.

W
 
W

woodhands

Never mind, Peo answered this in another thread - it's done wit
CountIF(H1:H315,"H").

Thanks
 
B

Bob Phillips

=COUNTIF(H:H,"S")

etc.

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
C

CLR

You're close........try this instead.......

=COUNTIF(H3:H315,"H")

Vaya con Dios,
Chuck, CABGx3
 
Top