Formula ?

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,073
Office Version
  1. 365
Platform
  1. Windows
=SUMIFS($V$6:$V$60,$Z$6:$Z$60,$B$6:$B$60,"Carp")/V69

What I am trying to do is Add V + Z values taken if Carp is in Column B then dividing it with /V69

Almost got it but missing something.



 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try

Either
=(SUMIFS($V$6:$V$60,$B$6:$B$60,"Carp")+SUMIFS($Z$6:$Z$60,$B$6:$B$60,"Carp"))/V69

or
=SUMPRODUCT($V$6:$V$60+$Z$6:$Z$60,--($B$6:$B$60="Carp"))/V69

M.
 
Upvote 0
Thank you for this I am actually using the =SUMPRODUCT and it works fine. I am trying to do one more thing. I been trying it with the sumifs but rather the sumproduct.


=(SUMIFS($V$6:$V$60,$B$6:$B$60,"Carp")+SUMIFS($Z$6:$Z$60,$B$6:$B$60,"Carp")/SUMIFS($T$6:$T$60,$B$6:$B$60,"Carp")) trying to divide this last part / Divide values from column T if carp in B
 
Upvote 0
I'm not understanding what you are trying to do with this new formula. Isn't it working?

M.
 
Upvote 0
​Sorry yes its returning a number and not a error, but the number is different and trying to figure out why at this time
 
Upvote 0
I think i'm understanding your problem now. The last parenthesis seems to me wrong.

Maybe
=(SUMIFS($V$6:$V$60,$B$6:$B$60,"Carp")+SUMIFS($Z$6:$Z$60,$B$6:$B$60,"Carp"))/SUMIFS($T$6:$T$60,$B$6:$B$60,"Carp")

M.
 
Last edited:
Upvote 0
This is what I am using now on this last part I'm trying to figure out. =IFERROR((V6:V14+Z6:Z14)/(T6:T14),0) returns 102.08 as I am adding both V and Z in that range Dividing it with the T range.

When I use =(SUMIFS($V$6:$V$60,$B$6:$B$60,"Carp")+SUMIFS($Z$6:$Z$60,$B$6:$B$60,"Carp")/SUMIFS($T$6:$T$60,$B$6:$B$60,"Carp"))

When I use this one above. I return $9554.67. I feel like this part needs to be change somewhat SUMIFS($T$6:$T$60,$B$6:$B$60,"Carp")) . Trying to figure our why its returning this high number if its taking the same range
 
Upvote 0
Yes that was it thank youuuuuu ) I new I was missing something small :) thanks
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,185
Members
448,554
Latest member
Gleisner2

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