View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
MS-Exl-Learner MS-Exl-Learner is offline
external usenet poster
 
Posts: 132
Default Sumif with multiple sum ranges in a sheet

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