Count number of childre between ages 0-5,6-10, 11-15

J

Jessica

I need a formula that will help me count the number of children who are 0-5
years old and 6-10 years old ect.
 
M

Mike H

Jessica,

2 options. Bring them round to my office and we'll count them together or
explain the data layout in your worksheet:)

Mike
 
S

stew

Assuming you have a list of the children in one column and there ages in
another

A1 Jessica Lang B1 7
A 2 Bonnie Lang B2 11
Ac Joan Rivers B3 4

IN a Suitable Cell D1 =Countif(B1:b3,<5) will give you under 5
: =Countif(B1:b3,<5)-D1 WILL GIVE YOU UNDER 10
 
T

tedmi

Stew: I think your second formula should be =CountIf(B1:B3, <10)-D1
Jessica: If your spreadsheet contains dates of birth rather than ages in
Col. B (which it should, so you don't have to update at each client's
birthday), then calculate age as follows: =DATEDIF(B1, TODAY(), "Y")
 
S

stew

THANK YOU tedmi YOU ARE CORRECT

BEST STEW

tedmi said:
Stew: I think your second formula should be =CountIf(B1:B3, <10)-D1
Jessica: If your spreadsheet contains dates of birth rather than ages in
Col. B (which it should, so you don't have to update at each client's
birthday), then calculate age as follows: =DATEDIF(B1, TODAY(), "Y")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top