problems with formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a formula to count the number of people in a table
between a set of age values (3 to 14) i have data in 3 columns for forename,
suname, age, but over 2500 entries to extract the data from..

Please can you help

Mike
 
Let's say the ages are column G. Try:

=COUNTIF(G:G,"<15")-COUNTIF(G:G,"<3")

This will exclude 2 and under.
This will exclude 15 and over.
 
Thanks for that
Mike

Gary''s Student said:
Let's say the ages are column G. Try:

=COUNTIF(G:G,"<15")-COUNTIF(G:G,"<3")

This will exclude 2 and under.
This will exclude 15 and over.
 
Back
Top