Trying to isolate tasks completed in May

Btanyf

New Member
Joined
Aug 5, 2010
Messages
13
Hello,
So I have a list of tasks with a start & end date then a column with the business days it took to get from start to end. I need to know the amount of tasks that were completed in April and the amount of tasks that started in April but ended in May

(A1) April 7, 2011 (B1) May 9, 2011 (C1) 21 days
(A2) April 11, 2011 (B2) April 14, 2011 (C2) 4 days

So I need to find s formula that gives me 1 completed task for april and 1 completed task for may (they do not need to be the same formaula they can be separate)

If anyone can help that would be great...Thanks! :eeek:
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
D1: 01/04/2011
E1: 30/4/2011
F1: 30/05/2011

For April

Code:
=SUMPRODUCT(--($A$1:$A$18>D1),--($B$1:$B$18 < E1),--($B$1:$B$18 > D1))
<e1),--($b$1:$b$18><e1),--($b$1:$b$18><e1),--($b$1:$b$18>
For April-May

E3:=SUMPRODUCT(--($A$1:$A$18>D1),--($B$1:$B$18>E1),--($B$1:$B$18>D1),--(B1:B18 < F1))
<f1))

Adjust your ranges</f1))
</e1),--($b$1:$b$18></e1),--($b$1:$b$18></e1),--($b$1:$b$18>
 
Last edited:
Upvote 0
Hello,
So I have a list of tasks with a start & end date then a column with the business days it took to get from start to end. I need to know the amount of tasks that were completed in April and the amount of tasks that started in April but ended in May

(A1) April 7, 2011 (B1) May 9, 2011 (C1) 21 days
(A2) April 11, 2011 (B2) April 14, 2011 (C2) 4 days

So I need to find s formula that gives me 1 completed task for april and 1 completed task for may (they do not need to be the same formaula they can be separate)

If anyone can help that would be great...Thanks! :eeek:
Are the dates all within the same year?

What version of Excel are you using?
 
Upvote 0
I will try the first answer above.

But for the second question, the dates are in my fiscal year 2011-2012 and I am using excel 2007.

Thanks for the formula posted above! lets see if it gives me what I want!
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,351
Members
452,907
Latest member
Roland Deschain

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