SUMIF across multiple cells

RodneyW

Active Member
Joined
Sep 24, 2010
Messages
419
Office Version
  1. 2013
Platform
  1. Windows
I'm using the following SUMIF statement: =SUMIF(G10:G22,"x",F10:F22) and it's working perfectly.

Now what I need in cell U10 is a formula that will look at cell G10. If the value is "x" then U10 will display the value in cell E10 ----- AND ----- at the same time I need it to look in cell K10. If the value is "x" then I need cell U10 to add the value in cell I10 and so on for O10 when it equals "x" to add the value in M10 and when S10 = "x" to add the value in Q10.

In non-code language I would say my destination cell us U10. Look at the following
If G10 = x then include the value in E10 in the sum. Also look at K10, if it equals "x" than include the value in I10 in the sum. Also look at O10, if it equals "x" than include the value in M10 in the sum. Also look in cell S10, if it equals "x" then include that value in the sum.

thanks in advance
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Assuming your values are evenly spaced....
In this example, the formula is referencing E10:O10
which contains these values:
E10 100
G10 x
I10 200
K10 x
M10 500
O10x

This formula, in U10 returns the sum of the x-associated values:
=SUMIF(G10:O10,"x",E10:M10)

Note the staggered range references.

In that example, the formula returns 800

Is that something you can work with?
 
Last edited:
Upvote 0
about to jump on a conference call.... will check when it's over. TY
 
Upvote 0

Forum statistics

Threads
1,214,586
Messages
6,120,402
Members
448,958
Latest member
Hat4Life

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