Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
try something like
=sumproduct((agerange=3)*(agerange<=14)) -- Don Guillett SalesAid Software "Mike Lowe" <Mike wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks
Mike "Don Guillett" wrote: try something like =sumproduct((agerange=3)*(agerange<=14)) -- Don Guillett SalesAid Software "Mike Lowe" <Mike wrote in message ... 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 |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() Try this =COUNTIF(C:C,"2")-COUNTIF(C:C,"14") -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=514946 |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Cheers for that, its perfect
"daddylonglegs" wrote: Try this =COUNTIF(C:C,"2")-COUNTIF(C:C,"14") -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=514946 |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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. -- Gary's Student "Mike Lowe" wrote: 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 |
#7
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks for that
Mike "Gary''s Student" wrote: 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. -- Gary's Student "Mike Lowe" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Problems with Sumproduct formulas | Excel Worksheet Functions | |||
Need Formulas for counting multiple conditions | Excel Worksheet Functions | |||
Formulas not working | Excel Worksheet Functions | |||
Formulas | Excel Worksheet Functions | |||
Dynamic Formulas with Dynamic Ranges | Excel Worksheet Functions |