using dates to defien what to sum

Smithgall

Board Regular
Joined
May 24, 2006
Messages
68
i have four collumns and Xnumber of rows. A1 is the name,B1 is the start date, C1 is the end date and D2 is a sum. A2 through Ax is a series of dropdown boxes with employee names. What i want to do is select a name from a dropdown. put in the start date and then the end date and have collumn D sum all the wdigets they produced between that time.

The widgets are entered on another sheet in the same workbook. that sheet is simply A1:A365 with the date on each row and then column B holding the actual number of widgets produced on that day.

What i am having problems with is saying look for the dates in this collumn and then sum all the values from a corresponding column and rows.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
i have four collumns and Xnumber of rows. A1 is the name,B1 is the start date, C1 is the end date and D2 is a sum. A2 through Ax is a series of dropdown boxes with employee names. What i want to do is select a name from a dropdown. put in the start date and then the end date and have collumn D sum all the wdigets they produced between that time.

The widgets are entered on another sheet in the same workbook. that sheet is simply A1:A365 with the date on each row and then column B holding the actual number of widgets produced on that day.

What i am having problems with is saying look for the dates in this collumn and then sum all the values from a corresponding column and rows.

A couple of options,

=SUMIF(A1:A365,">="&Sheet1!B1,B1:B365)-SUMIF(A1:A365,">"&Sheet!C1,B1:B365)

=SUMPRODUCT(-(A1:A365>=Sheet1!B1),--(A1:A365 < Sheet1!C1),B1:B365)

Where Sheet1 is the worksheet housing the dates and column to sum.

Edited for missing paren
 
Upvote 0
Try:

=SUMPRODUCT(--(SHEET2!$A$1:$A$365>=B2),--(SHEET2!$A$1:$A$365<=C2),SHEET2!$B$1:$B$365)

Does the person's name come into play at all, though?
 
Upvote 0
Yes he name does come intp play.

I should have mentioned that. The drop down will determine what sheet is looked at for the date( if they choose Mike then then sheet Mike is used for the data). So the code would remain the same except i will have to add some sort of if statement to choose the right sheet depending on what name was chosen from the drop down box.

i havent tried the code yet but thanks in advance.
 
Upvote 0
Re: Yes he name does come intp play.

I should have mentioned that. The drop down will determine what sheet is looked at for the date( if they choose Mike then then sheet Mike is used for the data). So the code would remain the same except i will have to add some sort of if statement to choose the right sheet depending on what name was chosen from the drop down box.

i havent tried the code yet but thanks in advance.

I hope you don't have too many of these formulae,

=SUMPRODUCT(--(INDIRECT("'"&A1&"'!A1:A365")>=B1),--(INDIRECT("'"&A1&"'!A1:A365")<=C1),INDIRECT("'"&A1&"'!B1:B365"))
 
Upvote 0

Forum statistics

Threads
1,214,611
Messages
6,120,513
Members
448,967
Latest member
screechyboy79

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