Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi experts,
I need to sum multiple columns in a range which meets a criteria in one of the columns of the range. For example C1 C2 C3 R1 A 10 10 R2 B 4 5 R3 A 2 1 I need to sum columns C2&C3 if value in column C1 is equal to A. In this case the result should be 23. thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not thoroughly tested
=SUMPRODUCT(--(A1:A3="A"),B1:B3+C1:C3) "MA" wrote: Hi experts, I need to sum multiple columns in a range which meets a criteria in one of the columns of the range. For example C1 C2 C3 R1 A 10 10 R2 B 4 5 R3 A 2 1 I need to sum columns C2&C3 if value in column C1 is equal to A. In this case the result should be 23. thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi MA
Try this =SUMPRODUCT(--(A2:A4="A"),B2:B4+C2:C4) HTH John "MA" wrote in message ... Hi experts, I need to sum multiple columns in a range which meets a criteria in one of the columns of the range. For example C1 C2 C3 R1 A 10 10 R2 B 4 5 R3 A 2 1 I need to sum columns C2&C3 if value in column C1 is equal to A. In this case the result should be 23. thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Copy the below formula and paste it in F1 cell.
=SUMIF(C:C,"A",D:D)+SUMIF(C:C,"A",E:E) -- Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "MA" wrote: Hi experts, I need to sum multiple columns in a range which meets a criteria in one of the columns of the range. For example C1 C2 C3 R1 A 10 10 R2 B 4 5 R3 A 2 1 I need to sum columns C2&C3 if value in column C1 is equal to A. In this case the result should be 23. thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT((A1:A3="A")*B1:C3)
"MA" wrote: Hi experts, I need to sum multiple columns in a range which meets a criteria in one of the columns of the range. For example C1 C2 C3 R1 A 10 10 R2 B 4 5 R3 A 2 1 I need to sum columns C2&C3 if value in column C1 is equal to A. In this case the result should be 23. thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sumif with 2 ranges and multiple criteria | Excel Worksheet Functions | |||
Sumif across multiple ranges | Excel Worksheet Functions | |||
SUMIF Multiple Criteria in different ranges. | Excel Worksheet Functions | |||
How to SUMIF multiple ranges? | Excel Discussion (Misc queries) | |||
SumIF Multiple Ranges | Excel Worksheet Functions |