Complete the formula to count how many times the value in cell A2 appears in the range B2:B10.
=COUNTIF(B2:B10, [1])The COUNTIF function counts how many cells in the range B2:B10 match the value in A2. So, the criteria should be the cell reference A2.
Complete the formula to create a frequency distribution using the FREQUENCY function for data in A2:A15 with bins in C2:C5.
=FREQUENCY(A2:A15, [1])The FREQUENCY function needs the bins array as the second argument, which is the range C2:C5 here.
Fix the error in the formula to calculate the relative frequency of values in B2:B10 by dividing each count by the total count in B11.
=B2/[1]The total count is stored in cell B11, so dividing B2 by B11 gives the relative frequency.
Fill both blanks to create a formula that counts values in A2:A20 greater than 50 and less than or equal to 100.
=COUNTIFS(A2:A20, [1], A2:A20, [2])
COUNTIFS counts cells that meet all criteria. Here, the first criteria is values greater than 50, and the second is values less than or equal to 100.
Fill all three blanks to create a formula that calculates the percentage frequency of values in B2:B10 relative to the total in B11, formatted as a percentage.
=TEXT(B2/[1], [2])
The formula divides the count in B2 by the total in B11 to get the fraction, then TEXT formats it as a percentage with two decimals.