Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have reference data in Column "$Q$3:$Q$502" of "sheet1". For all cells in
the reference column that contain "yes", I would like to average quantity in cells for Column $S$3:$S$502 respectively. So if it finds 3 in column Q with "Yes" (2,3,4) , it will return the number 3. -- Thank you! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
=AVERAGEIF($Q$3:$Q$502,"YES",$S$3:$S$502) "Doug" wrote: I have reference data in Column "$Q$3:$Q$502" of "sheet1". For all cells in the reference column that contain "yes", I would like to average quantity in cells for Column $S$3:$S$502 respectively. So if it finds 3 in column Q with "Yes" (2,3,4) , it will return the number 3. -- Thank you! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
for pre-2007:
=SUMIF(Q3:Q502,"Yes",S3:S502)/COUNTIF(Q3:Q502,"Yes") -- Best Regards, Luke M "Eduardo" wrote in message ... Hi, =AVERAGEIF($Q$3:$Q$502,"YES",$S$3:$S$502) "Doug" wrote: I have reference data in Column "$Q$3:$Q$502" of "sheet1". For all cells in the reference column that contain "yes", I would like to average quantity in cells for Column $S$3:$S$502 respectively. So if it finds 3 in column Q with "Yes" (2,3,4) , it will return the number 3. -- Thank you! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try
=AVERAGE(IF(Q3:Q502="yes",S3:S502,FALSE)) This is an array formula, so you MUST press CTRL SHIFT ENTER rather than just ENTER when you first enter the formula and whenever you edit it later. If you do this correctly, Excel will display the formula in the formula bar enclosed in curly braces { }. You don't type in the braces; Excel puts them there automatically. The formula will not work correctly if you do not enter it with CTRL SHIFT ENTER. See www.cpearson.com/Excel/ArrayFormulas.aspx for much more information about array formulas. Cordially, Chip Pearson Microsoft Most Valuable Professional, Excel, 1998 - 2010 Pearson Software Consulting, LLC www.cpearson.com On Fri, 14 May 2010 09:34:01 -0700, Doug wrote: I have reference data in Column "$Q$3:$Q$502" of "sheet1". For all cells in the reference column that contain "yes", I would like to average quantity in cells for Column $S$3:$S$502 respectively. So if it finds 3 in column Q with "Yes" (2,3,4) , it will return the number 3. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup looks to the prior column if zero appears in the lookup col | Excel Discussion (Misc queries) | |||
LookUp Function with Two Column Search Returning One Column Value | Excel Worksheet Functions | |||
lookup text in one column, count in another column | Excel Worksheet Functions | |||
Lookup in one column, and return value from another column | Excel Worksheet Functions | |||
Calculating totals in a column based on a lookup in another column | Excel Worksheet Functions |