Mode() & Large()

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

Guest

Ok .. i know how to return the number used most in a range;

=MODE(A1:A15)

and i know how to find the K-th largest number;

=LARGE(A1:A15,k)

but what i can't figure out is how to find the 2nd or 3rd most used number.
basically i need to combine the 2 functions.

any help .. please, thanks in advance.
 
cheshire191 wrote...
Ok .. i know how to return the number used most in a range;

=MODE(A1:A15)

and i know how to find the K-th largest number;

=LARGE(A1:A15,k)

but what i can't figure out is how to find the 2nd or 3rd most used number.
basically i need to combine the 2 functions.

Forget MODE. One way to find the k_th most frequent number in the range
rng is

=INDEX(rng,MATCH(LARGE(FREQUENCY(rng,rng), k ),FREQUENCY(rng,rng),0))
 

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