A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
the frequency command takes two arguments.
=Frequency(data cells, bin cells)
Say you have your data in A1:A20 and your bins in B2:B20
Select C1:C20. Now go to the formulas tab and select the statistical functions, then choose frequency
Click in the data_array box then select A1:A20 with your mouse
Now Click in the Bins_Array box then select B1:B20 with your mouse
now Hold down the Ctrl and Shift Keys and hit enter.
This will enter the formula =Frequency(A1:A20,B1:B20) in cells C1:C20.
This is a multicell array formula. if you select any cell in C1:C20 it will appear as
{=FREQUENCY(A1:A20,B1:B20)}
The {} are not really there - they are just how Excel marks the formula as being interpreted as an array formula. This is necessary because Frequency is returning multiple values rather than just 1 value like most functions.
--
Regards,
Tom Ogilvy