Formulas and Functions Help
- Welcome
-
- ACCRINT
- ACCRINTM
- BONDDURATION
- BONDMDURATION
- COUPDAYBS
- COUPDAYS
- COUPDAYSNC
- COUPNUM
- CUMIPMT
- CUMPRINC
- CURRENCY
- CURRENCYCODE
- CURRENCYCONVERT
- CURRENCYH
- DB
- DDB
- DISC
- EFFECT
- FV
- INTRATE
- IPMT
- IRR
- ISPMT
- MIRR
- NOMINAL
- NPER
- NPV
- PMT
- PPMT
- PRICE
- PRICEDISC
- PRICEMAT
- PV
- RATE
- RECEIVED
- SLN
- STOCK
- STOCKH
- SYD
- VDB
- XIRR
- XNPV
- YIELD
- YIELDDISC
- YIELDMAT
-
- ABS
- CEILING
- COMBIN
- EVEN
- EXP
- FACT
- FACTDOUBLE
- FLOOR
- GCD
- INT
- LCM
- LN
- LOG
- LOG10
- MDETERM
- MINVERSE
- MMULT
- MUNIT
- MOD
- MROUND
- MULTINOMIAL
- ODD
- PI
- POLYNOMIAL
- POWER
- PRODUCT
- QUOTIENT
- RAND
- RANDARRAY
- RANDBETWEEN
- ROMAN
- ROUND
- ROUNDDOWN
- ROUNDUP
- SEQUENCE
- SERIESSUM
- SIGN
- SQRT
- SQRTPI
- SUBTOTAL
- SUM
- SUMIF
- SUMIFS
- SUMPRODUCT
- SUMSQ
- SUMX2MY2
- SUMX2PY2
- SUMXMY2
- TRUNC
-
- ADDRESS
- AREAS
- CHOOSE
- CHOOSECOLS
- CHOOSEROWS
- COLUMN
- COLUMNS
- DROP
- EXPAND
- FILTER
- FORMULATEXT
- GETPIVOTDATA
- HLOOKUP
- HSTACK
- HYPERLINK
- INDEX
- INDIRECT
- INTERSECT.RANGES
- LOOKUP
- MATCH
- OFFSET
- REFERENCE.NAME
- ROW
- ROWS
- SORT
- SORTBY
- TAKE
- TOCOL
- TOROW
- TRANSPOSE
- UNION.RANGES
- UNIQUE
- VLOOKUP
- VSTACK
- WRAPCOLS
- WRAPROWS
- XLOOKUP
- XMATCH
-
- AVEDEV
- AVERAGE
- AVERAGEA
- AVERAGEIF
- AVERAGEIFS
- BETADIST
- BETAINV
- BINOMDIST
- CHIDIST
- CHIINV
- CHITEST
- CONFIDENCE
- CORREL
- COUNT
- COUNTA
- COUNTBLANK
- COUNTIF
- COUNTIFS
- COVAR
- CRITBINOM
- DEVSQ
- EXPONDIST
- FDIST
- FINV
- FORECAST
- FREQUENCY
- GAMMADIST
- GAMMAINV
- GAMMALN
- GEOMEAN
- HARMEAN
- INTERCEPT
- LARGE
- LINEST
- LOGINV
- LOGNORMDIST
- MAX
- MAXA
- MAXIFS
- MEDIAN
- MIN
- MINA
- MINIFS
- MODE
- NEGBINOMDIST
- NORMDIST
- NORMINV
- NORMSDIST
- NORMSINV
- PERCENTILE
- PERCENTRANK
- PERMUT
- POISSON
- PROB
- QUARTILE
- RANK
- SLOPE
- SMALL
- STANDARDIZE
- STDEV
- STDEVA
- STDEVP
- STDEVPA
- TDIST
- TINV
- TTEST
- VAR
- VARA
- VARP
- VARPA
- WEIBULL
- ZTEST
- Copyright

FREQUENCY
The FREQUENCY function returns an array of how often data values occur within a collection of interval values.
FREQUENCY(data-values, interval-values)
data-values: A collection containing the values to be evaluated. data-values must contain number values, date/time values or duration values. All values should be of the same value type.
interval-values: A collection containing the interval values. interval-values must contain values of the same value type as the values in the data-values collection.
Notes
FREQUENCY determines the number of values in data-values that fall within each interval. The interval array is easiest to understand if it is arranged in ascending order. The first frequency is the count of those values that are less than or equal to the lowest interval value. All other frequency values, except the last, are the count of those values that are greater than the immediately lower interval value and less than or equal to the current interval value. The final frequency value is the count of those data values that are greater than the largest interval value.
The values returned by the function are contained in an array.
Example |
---|
Suppose the following table contains the test scores of 30 students who recently took an exam you administered. The scores are in cells A1:E6. Suppose further that the minimum passing grade is 65 and that the lowest score for other grades are as given (indicated as % in the table). In order to facilitate building the formulas, an "F" (below "Gr." in Column C) is represented by 1 and an "A" by 5. |
A | B | C | D | E | |
---|---|---|---|---|---|
1 | 55 | 75 | 90 | 65 | 91 |
2 | 33 | 88 | 74 | 97 | 77 |
3 | 83 | 76 | 89 | 93 | 92 |
4 | 74 | 96 | 51 | 87 | 81 |
5 | 99 | 100 | 82 | 86 | 76 |
6 | 84 | 85 | 61 | 74 | 78 |
7 | % | Gr. | |||
8 | 65 | 1 | |||
9 | 74 | 2 | |||
10 | 83 | 3 | |||
11 | 91 | 4 | |||
12 | 5 |
=FREQUENCY($A$1:$E$6, $B$8:$B$11) returns an array of {5;3;8;8;6}, the number of students who received an "F" (score of 65 or less). |