Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to a formula that will look at column c and if it contains a certain
text say "dog" I want to average the price located in column H Thanks -- ce |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try one of these...
Excel 2007 or later: =AVERAGEIF(C2:C10,"dog",H2:H10) Any version of Excel: =SUMIF(C2:C10,"dog",H2:H10)/COUNTIF(C2:C10,"dog") This one is array entered: =AVERAGE(IF(C2:C10="dog",H2:H10)) ** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER. -- Biff Microsoft Excel MVP "Curtis" .(do not spam) wrote in message ... I need to a formula that will look at column c and if it contains a certain text say "dog" I want to average the price located in column H Thanks -- ce |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AVERAGE(IF(C2:C100="dog",H2:H100))
ctrl+shift+enter, not just enter "Curtis" wrote: I need to a formula that will look at column c and if it contains a certain text say "dog" I want to average the price located in column H Thanks -- ce |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would avoid array formulas and simply use;
=SUMIF(C1:C100,"dog",H1:H100)/COUNTIF(C1:C100,"dog") -- Regards Dave Hawley www.ozgrid.com "Curtis" .(do not spam) wrote in message ... I need to a formula that will look at column c and if it contains a certain text say "dog" I want to average the price located in column H Thanks -- ce |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Average with Conditions | Excel Worksheet Functions | |||
Average If with multiple conditions | Excel Discussion (Misc queries) | |||
AVERAGE with conditions | Excel Worksheet Functions | |||
Conditional Average (2 conditions) | Excel Worksheet Functions | |||
average on 2 conditions | Excel Worksheet Functions |