I need to multiply the result not sum ie SUMIFS

jmillf

New Member
Joined
Jul 30, 2014
Messages
43
Office Version
  1. 365
Platform
  1. Windows
Hi please see attached screenshot.

I need to multiply the results instead of summing the results. I currently get the correct variables summing, just need a hand to multiply.

=SUMIFS(Y73:Y850,C73:C850,AF74,F73:F850,"DS")

Help pls

Thanks
Jarrad
 

Attachments

  • Capture.PNG
    Capture.PNG
    15.5 KB · Views: 5

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
If I have understood correctly, then your existing formula was fairly close. It just needed to lock the rows being calculated with an absolute row address ($ sign) and to use column F for the shift rather than hard-code the "DS"

=IFERROR(SUMIFS(Y$74:Y$850,C$74:C$850,AH74,F$74:F$850,F74)/(COUNTIFS(C$74:C$850, AH74,F$74:F$850,F74)),"NA")

If you are using a recent version of Excel (good idea to update your profile to include this info so helpers know) and have the AVERAGEIFS function then you could use that

=AVERAGEIFS(Y$74:Y$850,C$74:C$850,AH74,F$74:F$850,F74)

Yet another option would be to use a Pivot Table (assuming columns C:Y all have headings in row 72):

Book1
ABCDE
1Average of OEEColumn Labels
2Row LabelsASDSNS
318-Jun79.18%32.35%84.90%
42-Jul33.70%48.53%
5
Sheet3
 
Upvote 0
If I have understood correctly, then your existing formula was fairly close. It just needed to lock the rows being calculated with an absolute row address ($ sign) and to use column F for the shift rather than hard-code the "DS"

=IFERROR(SUMIFS(Y$74:Y$850,C$74:C$850,AH74,F$74:F$850,F74)/(COUNTIFS(C$74:C$850, AH74,F$74:F$850,F74)),"NA")

If you are using a recent version of Excel (good idea to update your profile to include this info so helpers know) and have the AVERAGEIFS function then you could use that

=AVERAGEIFS(Y$74:Y$850,C$74:C$850,AH74,F$74:F$850,F74)

Yet another option would be to use a Pivot Table (assuming columns C:Y all have headings in row 72):

Book1
ABCDE
1Average of OEEColumn Labels
2Row LabelsASDSNS
318-Jun79.18%32.35%84.90%
42-Jul33.70%48.53%
5
Sheet3

Perfect!!!! Thank you very much. Used the AVERAGEIFS statement. Thanks again
 
Upvote 0

Forum statistics

Threads
1,215,640
Messages
6,125,974
Members
449,276
Latest member
surendra75

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