array formula for conditional sum

jrg24

New Member
Joined
Aug 6, 2010
Messages
49
Hi all. I cannot post any data here at the moment, so I am providing this link to help demonstrate what I want to do.
http://www.mrexcel.com/tip083.shtml
First off I am using excel 2010 and as far as I can tell the conditional sum wizard is not in this version of excel. What I am trying to do is essentially what is shown in this link with the exception that in column A of my sheet, where they have a product category, I have eight digit numbers that I need to use as a condition based on their range(greater than or equal to 5, less than equal to 15, for example) AND the sales rep name. Anyone have an idea how I can accomplish this? I have tried several different things in vain and could really use some help.
I hope this makes sense. Thanks in advance for your help
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hi all. I cannot post any data here at the moment, so I am providing this link to help demonstrate what I want to do.
http://www.mrexcel.com/tip083.shtml
First off I am using excel 2010 and as far as I can tell the conditional sum wizard is not in this version of excel. What I am trying to do is essentially what is shown in this link with the exception that in column A of my sheet, where they have a product category, I have eight digit numbers that I need to use as a condition based on their range(greater than or equal to 5, less than equal to 15, for example) AND the sales rep name. Anyone have an idea how I can accomplish this? I have tried several different things in vain and could really use some help.
I hope this makes sense. Thanks in advance for your help
Try...

E2: 5
F2: 15
G2: Joe

On Excel 2007 or later: In H2 just enter and copy down...

=SUMIFS($C$2:$C$30,$A$2:$A$30,">="&E2,$A$2:$A$30,"<="&F2,$B$2:$B$30,G2)


On all versions...

Either just enter:

=SUMPRODUCT(
$C$2:$C$30,
--($A$2:$A$30>=E2),
--($A$2:$A$30<=F2),
--($B$2:$B$30=G2))

Or, control+shift+enter, not just enter:

=SUM(
IF($A$2:$A$30>=E2,
IF($A$2:$A$30<=F2,
IF($B$2:$B$30=G2,
$C$2:$C$30))))
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,735
Members
452,939
Latest member
WCrawford

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