MODE isn't working properly.

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

Guest

I am trying to find the mode of my array, but I want it to return nothing if
there is no number which occurs most often. Instead, they give me the first
number which appeared.


For example:

MODE(4, 3, 4, 3) will return 4, and
MODE(3, 4, 4, 3) will return 3.


Is there some way I can fix or bypass this?
 
Hi!

Try this:

Entered as an array using the key combo of CTRL,SHIFT,ENTER:

=IF(LARGE(FREQUENCY(A1:A4,A1:A4),1)=LARGE(FREQUENCY(A1:A4,A1:A4),2),"",MODE(A1:A4))

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