Summary

The Excel FREQUENCY function returns a frequency distribution, which is a list that shows the frequency of values at given intervals. FREQUENCY returns multiple values and must be entered as an array formula with control-shift-enter, except in Excel 365.

Purpose 

Get the frequency of values in a data set

Return value 

A vertical array of frequencies

Syntax

=FREQUENCY(data_array,bins_array)
  • data_array - An array of values for which you want to get frequencies.
  • bins_array - An array of intervals ("bins") for grouping values.

How to use 

The FREQUENCY function counts how often numeric values occur in a set of data and returns a frequency distribution – a list that shows the frequency (count) of each value in a range at given intervals (bins).  FREQUENCY returns the distribution as a vertical array of numbers that represent a "count per bin".

The FREQUENCY function always returns an array with one more item than bins in the bins_array. This is by design, to catch any values greater than the largest value in the bins_array. The general pattern for FREQUENCY is:

=FREQUENCY(data,bins)

where data_array and bins_array are typically ranges on the worksheet.

Instructions

To create a frequency distribution using FREQUENCY:

  1. Enter numbers that represent the bins you want to group values into
  2. Make a selection the same size as the range that contains bins, or one greater if want to include the extra item
  3. Enter the FREQUENCY function as a multi-cell array formula with control+shift+enter.

In Excel 365, it is not necessary to enter FREQUENCY as an array formula. See notes below.

Examples

In the example shown, the formula in G5:G8 is:

{=FREQUENCY(C5:C14,F5:F8)}

Entered as a multi-cell array formula. 

Note: the curly braces added by Excel automatically when entered with control + shift + enter.

Horizontal results

The FREQUENCY function always returns a vertical array of results. To return horizontal results, wrap the FREQUENCY function in the TRANSPOSE function:

=TRANSPOSE(FREQUENCY(data,bins))

Excel 365

In Excel 365, which supports dynamic arrays natively, it is not necessary to select multiple cells before entering the FREQUENCY function. In cell G5, you can simply enter the formula below:

=FREQUENCY(C5:C14,L5:L8)

FREQUENCY will return an array of six counts, and these counts will spill automatically into the range G5:G9. The count in the last row (G9) is the overflow bin, the count of any values greater than the largest value in the bins_array.

Notes

  • FREQUENCY returns multiple values and must be entered as an array formula, except in Excel 365.
  • FREQUENCY always returns an array with one more item than bins. This is by design, to catch any values greater than the largest interval in the bins_array.
  • Each bin shows a count of values up to and including bin value, excluding values already accounted for.
Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.