Tallying Survey answer

zloep

New Member
Joined
Dec 8, 2008
Messages
28
I have a survey with 10 questions, filled out by roughly 25 individuals. Each question asks the individual to rank their thoughts from 1 (poor) to 10 (excellent).

From cell A1 to Y1, I've inputed the answers to question 1. It goes something like this:

10 9 10 9 8 10 7 4 10 9 8 7 4 10 8 10....

Is there a simply formula I can use to count how many "10", "9", "8" ... etc. were entered between A1:Y1"?
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Code:
=countif($a$1:$y$1,10)

will count 10s in that range
numbers other than 10 will count whatever the other numebrs are
 
Upvote 0
List the unique numbers 1 - 10 in a range of cells. Assume that list is in the range A5:A14.

Enter this formula in B5 and copy down to B14:

=COUNTIF(A$1:Y$1,A5)
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,134
Members
449,488
Latest member
qh017

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