Sum "or" Function

Berandon

New Member
Joined
Sep 8, 2014
Messages
36
I have a drop down window of tasks. I want it to add up another column if it says Sewing or Assembling. I can only get it to do do one. I tried =SumIFS and I think it wants both the be true cause it returns zero. If i delete one of the criteria then it does it right. I also tried an "or" function within the sumif and i just got "0"

Is there a formula I am not thinking of that would work?
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
=sumproduct(((rangetocheck="Sewing")+(rangetocheck="Assembling"))*(rangetoadd)) , its array formula so Ctrl+Shift+Enter
 
Upvote 0
I have a few I've been trying.

=SUMIF(J9:J2000,OR(J9:J2000="Assemble",J9:J2000="Weld",J9:J2000="paint"),O9:O2000)

=SUMIFS((J9:J2000,"Assemble","Weld","paint"),O9:O2000)

I want to to sum if one of those is true.
 
Upvote 0
I have a few I've been trying.

=SUMIF(J9:J2000,OR(J9:J2000="Assemble",J9:J2000="Weld",J9:J2000="paint"),O9:O2000)

=SUMIFS((J9:J2000,"Assemble","Weld","paint"),O9:O2000)

I want to to sum if one of those is true.

=SUM(SUMIF(J9:J2000,{"Assemble","Weld","paint"},O9:O2000))

would sum the O-range if any text value would hold for the J-range.
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top