SUMIF w/multiple conditions

  • Thread starter Thread starter lightstation67
  • Start date Start date
L

lightstation67

Here's my current formula:

=SUMIF(A3:A50,"Consumer",J3:J50)/C55

This works fine to get an average sum for everything that reads Consumer,
but now I need to sum only the positive $ amounts in column "J3:J50". How and
where do I insert this extra condition?

Any help would be appreciate. Thanks
 
Hi,
Try

=sumproduct(--(a3:a50="Consumer"),--(J3:J50>0),J3:j50/c55)

If this helped please click yes, thanks
 
Now, what if I need to sum only the amounts in column "J3:J50" where there
is no "#Value" displayed.
 
Fix the cells which are displaying #Value. Typically done with:
=if(iserror(yourcalculation),0,yourcalculation)

Regards,
Fred
 
Back
Top