Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to get the average with two criteria. if the cells in column Z = B11
then I want the average value from column CA (BUT I only want the average of cells greater than zero.) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use sumproduct to add the appropriate cells and to the count the
appropriate cells, then just divide the two: =sumproduct(--(z1:z5000=b11),--(ca1:ca50000),(ca1:ca5000)) / sumproduct(--(z1:z5000=b11),--(ca1:ca50000)) --Bruce "ellebelle" wrote: I want to get the average with two criteria. if the cells in column Z = B11 then I want the average value from column CA (BUT I only want the average of cells greater than zero.) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
that worked a treat - thanks!
"bpeltzer" wrote: You could use sumproduct to add the appropriate cells and to the count the appropriate cells, then just divide the two: =sumproduct(--(z1:z5000=b11),--(ca1:ca50000),(ca1:ca5000)) / sumproduct(--(z1:z5000=b11),--(ca1:ca50000)) --Bruce "ellebelle" wrote: I want to get the average with two criteria. if the cells in column Z = B11 then I want the average value from column CA (BUT I only want the average of cells greater than zero.) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What do the -- signs within the formula represent, or do?
-- Life is an adventure, are you living it? These are just my opinions, please feel free to correct them if they are wrong. "bpeltzer" wrote: You could use sumproduct to add the appropriate cells and to the count the appropriate cells, then just divide the two: =sumproduct(--(z1:z5000=b11),--(ca1:ca50000),(ca1:ca5000)) / sumproduct(--(z1:z5000=b11),--(ca1:ca50000)) --Bruce "ellebelle" wrote: I want to get the average with two criteria. if the cells in column Z = B11 then I want the average value from column CA (BUT I only want the average of cells greater than zero.) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
See http://www.xldynamic.com/source/xld.SUMPRODUCT.html for a detailed
explanation. -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "Hanr3" wrote in message ... What do the -- signs within the formula represent, or do? -- Life is an adventure, are you living it? These are just my opinions, please feel free to correct them if they are wrong. "bpeltzer" wrote: You could use sumproduct to add the appropriate cells and to the count the appropriate cells, then just divide the two: =sumproduct(--(z1:z5000=b11),--(ca1:ca50000),(ca1:ca5000)) / sumproduct(--(z1:z5000=b11),--(ca1:ca50000)) --Bruce "ellebelle" wrote: I want to get the average with two criteria. if the cells in column Z = B11 then I want the average value from column CA (BUT I only want the average of cells greater than zero.) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula for determing average based on weighting | Excel Worksheet Functions | |||
plotted Average | Charts and Charting in Excel | |||
Weighed Average of a weiged average when there are blanks | Excel Discussion (Misc queries) | |||
What is this kind of average called? | Excel Worksheet Functions | |||
Average the Last Five Cells in a Column | Excel Worksheet Functions |