FREQUENCY

FREQUENCY(data_array, bins_array)

Returns the number of times a particular value occurs.

data_arrayThe array containing the values you want to use.
bins_arrayThe array containing the intervals you want to group by.

REMARKS
* This function always returns multiple values.
* This function had to be entered as an Array Formula before Excel 2021.
* The number of elements in the returned array is one more than the number of elements in "bins_array".
* If "data_array" contains no values then an array of zeros is returned.
* If "bins_array" contains no values then the "data_array" array is returned.
* The arguments can be cell ranges that evaluate to numbers ??
* The extra element in the returned array returns the count of any values above the highest interval. For example, when counting three ranges of values (intervals) that are entered into three cells, be sure to enter FREQUENCY into four cells for the results.
* The extra cell returns the number of values in "data_array" that are greater than the third interval value.
* Empty cells or cells containing text are ignored.
* You can use the MODE.SNGL function to return the value that occurs most frequently.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 AB
1{=FREQUENCY({1,1,2,2,3,2,1},{1,2}) } = {3,3,1}10
2{=FREQUENCY({1,1,2,2,3,2,1},{1,2,3,4}) } = {3,3,1,0,0}10
3{=FREQUENCY({1,1,2,2,3,2,1},{3}) } = {7,0}10
4{=FREQUENCY(B1:B3,B1:B3) } = {3,0,0,0} 


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top