#1   Report Post  
Posted to microsoft.public.excel.misc
meegan
 
Posts: n/a
Default Frequency questio

I have a column of data and i would like to know what number occur the most
frequently. I dont know how to accomplish this though...could anyone please
help me? Thank you if you can!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Frequency questio

=INDEX(rng,MATCH(MAX(COUNTIF(rng,rng)),COUNTIF(rng ,rng),0))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"meegan" wrote in message
...
I have a column of data and i would like to know what number occur the

most
frequently. I dont know how to accomplish this though...could anyone

please
help me? Thank you if you can!



  #3   Report Post  
Posted to microsoft.public.excel.misc
RaymundCG
 
Posts: n/a
Default Frequency questio

Hi!

Would this help?

=MODE(your_column)
--
Thanks and kind regards


"meegan" wrote:

I have a column of data and i would like to know what number occur the most
frequently. I dont know how to accomplish this though...could anyone please
help me? Thank you if you can!

  #4   Report Post  
Posted to microsoft.public.excel.misc
meegan
 
Posts: n/a
Default Frequency questio

where do i insert the formula

"Bob Phillips" wrote:

=INDEX(rng,MATCH(MAX(COUNTIF(rng,rng)),COUNTIF(rng ,rng),0))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"meegan" wrote in message
...
I have a column of data and i would like to know what number occur the

most
frequently. I dont know how to accomplish this though...could anyone

please
help me? Thank you if you can!




  #5   Report Post  
Posted to microsoft.public.excel.misc
meegan
 
Posts: n/a
Default Frequency questio

where would I put that formula?

"RaymundCG" wrote:

Hi!

Would this help?

=MODE(your_column)
--
Thanks and kind regards


"meegan" wrote:

I have a column of data and i would like to know what number occur the most
frequently. I dont know how to accomplish this though...could anyone please
help me? Thank you if you can!



  #6   Report Post  
Posted to microsoft.public.excel.misc
RaymundCG
 
Posts: n/a
Default Frequency questio

Hi again meegan,

You may enter the formula anywhere w/in the spreadsheet except the column
containing the data.

the your_column previously mentioned in the formula means you have to select
the range containing the data

Hope this helps! :)
--
Thanks and kind regards


"meegan" wrote:

where would I put that formula?

"RaymundCG" wrote:

Hi!

Would this help?

=MODE(your_column)
--
Thanks and kind regards


"meegan" wrote:

I have a column of data and i would like to know what number occur the most
frequently. I dont know how to accomplish this though...could anyone please
help me? Thank you if you can!

  #7   Report Post  
Posted to microsoft.public.excel.misc
meegan
 
Posts: n/a
Default Frequency questio

what do i put in for the ranges...its in column C rows 1-57

"Bob Phillips" wrote:

=INDEX(rng,MATCH(MAX(COUNTIF(rng,rng)),COUNTIF(rng ,rng),0))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"meegan" wrote in message
...
I have a column of data and i would like to know what number occur the

most
frequently. I dont know how to accomplish this though...could anyone

please
help me? Thank you if you can!




  #8   Report Post  
Posted to microsoft.public.excel.misc
Domenic
 
Posts: n/a
Default Frequency questio

Bob's formula...

=INDEX(C1:C57,MATCH(MAX(COUNTIF(C1:C57,C1:C57)),CO UNTIF(C1:C57,C1:C57),0)
)

....confirmed with CONTROL+SHIFT+ENTER.

Raymund's formula...

=MODE(C1:C57)

....confirmed with just ENTER.

Note that MODE will return #N/A when no number occurs more than once.
Also, what if there's more than one number occurring most often?

In article ,
meegan wrote:

what do i put in for the ranges...its in column C rows 1-57

"Bob Phillips" wrote:

=INDEX(rng,MATCH(MAX(COUNTIF(rng,rng)),COUNTIF(rng ,rng),0))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"meegan" wrote in message
...
I have a column of data and i would like to know what number occur the

most
frequently. I dont know how to accomplish this though...could anyone

please
help me? Thank you if you can!




  #9   Report Post  
Posted to microsoft.public.excel.misc
RaymundCG
 
Posts: n/a
Default Frequency questio

Hi!

For multimodal data, we can use the FREQUENCY function instead. As per
example if data is in C1:C57, we can select the output range as D1:D57 then
enter the ff as an array formula (using CTRL+SHIFT+ENTER):

=FREQUENCY(C1:C57,C1:C57)

From there we can determine the number of occurences for each value.

Hope this helps!
--
Thanks and kind regards


"Domenic" wrote:

Bob's formula...

=INDEX(C1:C57,MATCH(MAX(COUNTIF(C1:C57,C1:C57)),CO UNTIF(C1:C57,C1:C57),0)
)

....confirmed with CONTROL+SHIFT+ENTER.

Raymund's formula...

=MODE(C1:C57)

....confirmed with just ENTER.

Note that MODE will return #N/A when no number occurs more than once.
Also, what if there's more than one number occurring most often?

In article ,
meegan wrote:

what do i put in for the ranges...its in column C rows 1-57

"Bob Phillips" wrote:

=INDEX(rng,MATCH(MAX(COUNTIF(rng,rng)),COUNTIF(rng ,rng),0))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"meegan" wrote in message
...
I have a column of data and i would like to know what number occur the
most
frequently. I dont know how to accomplish this though...could anyone
please
help me? Thank you if you can!




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
histograms - frequency and relative frequency? confusedstudent Excel Discussion (Misc queries) 2 February 8th 06 08:20 AM
3-D Frequency Chart in VBA [email protected] Charts and Charting in Excel 0 July 5th 05 05:19 PM
Frequency function Pritesh Excel Discussion (Misc queries) 2 April 18th 05 09:53 PM
Frequency for Histograms in Excel Jim Charts and Charting in Excel 7 February 24th 05 07:33 PM
Cumulative Frequency Chris Grant Charts and Charting in Excel 2 February 3rd 05 05:49 AM


All times are GMT +1. The time now is 06:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"