Formula help =SUMIFS

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
This works:
=SUMIFS($BV$6:$BV$72,$B$6:$B$72,"Operator")/BV77

Need to addition another column also in this, but I cant getit to go in red. Any help appreciate it.
=SUMIFS($BV$6:$BV$72+$BZ$24:$BZ$65,$B$6:$B$72,"Operator")/BV77
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Is this what you are trying to do?
=(SUMIFS($BV$6:$BV$72,$B$6:$B$72,"Operator")/BV77)+(SUMIFS($BZ$24:$BZ$65,$B$6:$B$72,"Operator")/BV77)
 
Upvote 0
Hi,

Yes, you'll need to SUM the 2 SUMIFS..
Please also notice that your new Sum Range BZ24:BZ65 is not the same size as the Criteria Range B6:B72.
 
Upvote 0
Yes close but actually it returns #value I don't know why and also forgot to mention this I need \BZ77 not BV77
(SUMIFS($BZ$24:$BZ$65,$B$6:$B$72,"Operator")/
BZ77
)
 
Upvote 0
that's ok on my end I don't want to sum it before BZ24
 
Upvote 0
but I also need the BV:BV72 \ BV77 ? So the outcome of % it will add the % of BV77 AND BZ77

Why I was looking for something like this

=(SUMIFS($BV$6:$BV$72,$B$6:$B$72,"Operator")/BV77)+(SUMIFS($BZ$24:$BZ$65,$B$6:$B$72,"Operator")/BZ77) like scott mention but its returning #value
 
Last edited:
Upvote 0
You're getting #VALUE error because the range size doesn't match up, try this:

=SUMIFS($BV$6:$BV$72,$B$6:$B$72,"Operator")/BV77+SUMIFS($BZ$24:$BZ$65,$B$24:$B$65,"Operator")/BZ77
 
Upvote 0
Yep that was it thanks a lot. When I seen this I was like that's itttt thanksss
 
Upvote 0
You're welcome, glad you got it sorted out.
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,957
Members
449,200
Latest member
indiansth

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