Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a spreadsheet with a number from 1-20 in column A for each record
(row). I have another number in column P representing a number of days for each record. I need a summary formula which does the following: For all the rows in column A that are less than 11 (have values from 1-10), average all of the matching rows in column P. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AVERAGE(IF(A1:A100<11,P1:P100))
which is an array formula, it should be committed with Ctrl-Shift-Enter, not just Enter. Excel will automatically enclose the formula in braces (curly brackets), do not try to do this manually. When editing the formula, it must again be array-entered. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Ken99" wrote in message ... I have a spreadsheet with a number from 1-20 in column A for each record (row). I have another number in column P representing a number of days for each record. I need a summary formula which does the following: For all the rows in column A that are less than 11 (have values from 1-10), average all of the matching rows in column P. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "Ken99" wrote: I have a spreadsheet with a number from 1-20 in column A for each record (row). I have another number in column P representing a number of days for each record. I need a summary formula which does the following: For all the rows in column A that are less than 11 (have values from 1-10), average all of the matching rows in column P. Thanks Bob--this was right on and solved the problem immediately. --Ken |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text to column and selecting values based on a different column | Excel Discussion (Misc queries) | |||
macro | Excel Discussion (Misc queries) | |||
Calculating an average based on 2 and 3 criteria | Excel Worksheet Functions | |||
Positioning Numeric Values Resulting from 6 Column Array Formula | Excel Worksheet Functions | |||
Return Range of Numerical Values in Single Column based on Frequency Percentage | Excel Worksheet Functions |