← Level 2 – Formula kid

5 / 12 ⏱ 17 minutes

Counting cells COUNT

How many answers in a survey — without counting on fingers.

COUNT does not count empty

COUNT counts cells that have a number. Text and empty it skips.

=COUNT(B2:B10)

With a survey: how many rows have a filled vote count? With grades: how many subjects have a grade?

💡

COUNTA counts text too. =COUNTA(A2:A10) — how many snacks are named. Today mainly COUNT on numbers.

Survey — how many answers

  1. Sheet Survey. Column B has vote counts B3:B7 (five rows).

  2. Under the table A Number of rows with a number, B =COUNT(B3:B7).

  3. When all five cells have a number (even 0), the result 5.

  4. Delete the content of B5 (leave empty). COUNT shows 4.

Zero is a number. COUNT counts it. An empty cell not.

⚠️

Text 0 vs number 0. Text sits on the left. COUNT does not count it. Type 0 as a number.

Sum of votes — SUM you already know

Under COUNT add A Total votes, B =SUM(B3:B7). With 3+5+2+1+0 = 11. COUNT says how many rows with a number. SUM how many votes together.

Grades — how many subjects

  1. Grades grades B3:B8 (by the data).

  2. A Number of subjects, B =COUNT(B3:B8).

  3. Add a new subject with a grade — COUNT +1. An empty row without a grade COUNT will not lift.

🏫 Grade average One sheet, two columns: subject and grade. At the bottom a sum and an average.
💰 Pocket money Rows = days, columns = income / spend / left.
📊 Class survey One question, answers in one column, later a chart.
🏆 Mini dashboard Three numbers at the top and one chart. Numbers as a link, not copied by hand.

Now you 💪

  1. Survey: COUNT on the votes column. SUM of votes next to it.
  2. Grades: COUNT how many grades (numbers) in column B.
  3. An empty cell in the range lowers COUNT.
  4. A zero in the survey counts as a number.
  5. You know the difference COUNT (how many cells with a number) vs SUM (sum of values).

Check: COUNT and SUM together make sense on a survey.

What to take from this lesson