SUMIFS - If value is equal to 0 or greater than 11

Sineadd

Board Regular
Joined
Apr 24, 2019
Messages
58
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi

I am using the following formula to sum if the value in cells B;2:B44 is equal to 0 or greater than or equal to 11 but it just keeps returning "0 "

=SUMIFS(A2:A44, B2:B44,"=0", B2:B44,">=11")/A45


Anyone point out where I am going wrong - I am using it for other criteria and that's working fine, I have also tried putting in <1 and >=11 but that does not work either


Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Is this what you wanted
Excel Formula:
=SUMIFS(A2:A44,B2:B44,{"=0",">=11"})/A45
 
Upvote 0
Try
Excel Formula:
=SUMPRODUCT(SUMIFS(A2:A44, B2:B44,{0,">=11"}))/A45
Sumifs, or any similar function will not work if you use the same range with multiple criteria that can not be met at the same time. For a result to be provided, all criteria must be met. A cell can not be both =0 and >=11 at the same time.
 
Upvote 0
Try
Excel Formula:
=SUMPRODUCT(SUMIFS(A2:A44, B2:B44,{0,">=11"}))/A45
Sumifs, or any similar function will not work if you use the same range with multiple criteria that can not be met at the same time. For a result to be provided, all criteria must be met. A cell can not be both =0 and >=11 at the same time.
Thank you
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,438
Members
449,083
Latest member
Ava19

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