Formula Help ?

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
What I am using now:
=SUM(T24+T25)/T64
=SUM(V24+V25+Z24+Z25)/(V$66+Z$66)
=IFERROR((V24+V25+Z24+Z25)/(T24+T25),0)

Trying to see if I can do this. In column B range B6:B60 I have the word Operator in multiple cells.
What I am trying to do for each formula is if Operator is in column B. Trying to add the sum of always column V and Z. As you can see I have T24+T25 and V24+V25+Z24+Z25 Etc.
I was thinking instead of me keep on adding more ranges like + + + when Operator is present in column B to have these numbers come from reference if Operator is in Column B. Anything after /(with always stay the same. Its more of the beginning of the formula before the division /.


What I am thinking as this doesn’t work at the moment,but this might explain on more what I am trying to do.
=SUMIFS(T6:T60,B6:B60,"Operator"/(T64)
=SUMIFS(V6:V60+Z6:Z60,B6:B60,"Operator"/( V$66+Z$66)
=IFERROR((V6:V60+Z6+Z60),”Operator”/(T24+T25),0)

Thanks
 
That last formula gave me error. DIV


So the results =SUM(D6:D10+F6:F10)/(D14+F14) gives me 18%


=SUM(D6+D7+D8+D9+D10+F6+F7+F8+F9+F10)/(D14+F14) this gives me 90%

I think the : is giving me the wrong higher number
 
Upvote 0

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I'm not saying that this is the answer to your question, but

=SUM(D6:D10+F6:F10)/(D14+F14)

should be

=SUM(D6:D10,F6:F10)/(D14+F14)
 
Last edited:
Upvote 0
You have 6 rows with "Operator" against them and just 1 row for other.

It should be giving a higher percentage against the total of all values (D14+F14) on the values shown
Rich (BB code):
=SUMIFS($C$6:$C$11,$D$6:$D$11,"Operator",$F$6:$F$11,"Operator")/(D14+F14)
 
Last edited:
Upvote 0
I agree shold be 90% =SUM(D6:D10,F6:F10)/(D14+F14) The formula above though brings back 0. I think I only need Operator once in there no? referring to Column B
 
Upvote 0

Forum statistics

Threads
1,215,190
Messages
6,123,547
Members
449,107
Latest member
caya

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