Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() =SUMPRODUCT(--(A1:A24="Ted"),--(B1:B24="May"),--(C1:C24)) column a <Person, column b <Month, Column C <Cost I need to total all of Ted's Costs for May. But Now I need to do it for the quarter. So for say January, Feburary, March and April, four month blocks. How would I tweak Sumproduct to do that ... All cost for those four months. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
List the month names for the quarter in a range of cells:
E1 = Jan E2 = Feb E3 = Mar E4 = Apr F1 = Ted Then: =SUMPRODUCT(--(A1:A24=F1),--(ISNUMBER(MATCH(B1:B24,E1:E4,0))),C1:C24) -- Biff Microsoft Excel MVP "Benjamin" wrote in message ... =SUMPRODUCT(--(A1:A24="Ted"),--(B1:B24="May"),--(C1:C24)) column a <Person, column b <Month, Column C <Cost I need to total all of Ted's Costs for May. But Now I need to do it for the quarter. So for say January, Feburary, March and April, four month blocks. How would I tweak Sumproduct to do that ... All cost for those four months. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Give this a try:
=SUMPRODUCT(--(A1:A24="Ted"),--(B1:B24="January")+(B1:B24="February")+(B1:B24="Ma rch")+(B1:B24="April"),--(C1:C24)) http://www.excelforum.com/excel-work...l-countif.html HTH, Ryan--- -- Ryan--- If this information was helpful, please indicate this by clicking ''Yes''. "Benjamin" wrote: =SUMPRODUCT(--(A1:A24="Ted"),--(B1:B24="May"),--(C1:C24)) column a <Person, column b <Month, Column C <Cost I need to total all of Ted's Costs for May. But Now I need to do it for the quarter. So for say January, Feburary, March and April, four month blocks. How would I tweak Sumproduct to do that ... All cost for those four months. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SUMPRODUCT multiple conditions | Excel Discussion (Misc queries) | |||
SUMPRODUCT or INDEX/MATCH for multiple conditions and multiple rec | Excel Discussion (Misc queries) | |||
Sumproduct Multiple < Conditions | Excel Worksheet Functions | |||
Multiple SumProduct conditions | Excel Worksheet Functions | |||
Sumproduct Multiple Conditions | Excel Worksheet Functions |