Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to get the average for a certain column, given 2 different criteria.
Right now I'm using this formula for one criteria: =SUMIF($Q$3:$Q$114,"=10",$E$3:$E$114)/COUNTIF($Q$3:$Q$114,"=10") I want to also include that R3:R114 equals 1. Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use this array* function:
=AVERAGE(IF(($Q$3:$Q$114=10)*($R$3:$R$114=1),$E$3: $E$114)) *Array formulas must be confirmed using Ctrl+Shift+Enter, not just Enter -- Best Regards, Luke M "AAA1986" wrote in message ... I want to get the average for a certain column, given 2 different criteria. Right now I'm using this formula for one criteria: =SUMIF($Q$3:$Q$114,"=10",$E$3:$E$114)/COUNTIF($Q$3:$Q$114,"=10") I want to also include that R3:R114 equals 1. Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For more than one criteria, use Sumproduct, as in:
=SUMPRODUCT(($Q$3:$Q$114=10)*($R$3:$R$114=1)*$E$3: $E$114)/SUMPRODUCT(($Q$3:$Q$114=10)*($R$3:$R$114)) Regards, Fred "AAA1986" wrote in message ... I want to get the average for a certain column, given 2 different criteria. Right now I'm using this formula for one criteria: =SUMIF($Q$3:$Q$114,"=10",$E$3:$E$114)/COUNTIF($Q$3:$Q$114,"=10") I want to also include that R3:R114 equals 1. Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=SUMPRODUCT(--($Q$3:$Q$114=10), --($R$3:$R$114=1), $E$3:$E$114) / SUMPRODUCT(--($Q$3:$Q$114=10), --($R$3:$R$114=1)) HTH Elkar "AAA1986" wrote: I want to get the average for a certain column, given 2 different criteria. Right now I'm using this formula for one criteria: =SUMIF($Q$3:$Q$114,"=10",$E$3:$E$114)/COUNTIF($Q$3:$Q$114,"=10") I want to also include that R3:R114 equals 1. Thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you're using Excel 2007...
=AVERAGEIFS(E3:E114,Q3:Q114,10,R3:R114,1) -- Biff Microsoft Excel MVP "AAA1986" wrote in message ... I want to get the average for a certain column, given 2 different criteria. Right now I'm using this formula for one criteria: =SUMIF($Q$3:$Q$114,"=10",$E$3:$E$114)/COUNTIF($Q$3:$Q$114,"=10") I want to also include that R3:R114 equals 1. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
compare cells in column to criteria, then average next column cell | Excel Worksheet Functions | |||
average one column based on criteria from another | Excel Discussion (Misc queries) | |||
how can I average more cells only in a column by a criteria? | Excel Worksheet Functions | |||
calculate average in a column based on criteria in another column | Excel Discussion (Misc queries) | |||
Average given criteria, HELP! | Excel Worksheet Functions |