count of records with 2 or more "options" selected

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

Guest

Hi

I want to count the number of records where any 2 of 9 options are selected
(with an "x' in the cell). Again, they can be any 2 of the 9 options.
Likewise, I then need to know how many have any 3, 4, and 5+ of 9 options
selected...

I hope someone can let me know an easy way to do this.

Thanks,
Monish
 
Hi!

Use a helper column at the end of your data range that counts the number of
X's per row:

=COUNITF(B2:J2,"X")

Copy down as needed.

Then use that helper column as the range to count for the specific number
criteria:

=COUNTIF(K2:K10,2)
=COUNTIF(K2:K10,">5")

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top