Dates between 2 dates, return value

Michael A

New Member
Joined
Jul 10, 2011
Messages
5
Hello,

I have a series of tasks occurring over several different days. I'm wanting to calculate a value for each of the days, if that day is between certain start and finish dates. However, the results are only displaying values on the task start and finish dates instead of also showing a value on each of the days between the start and finish dates. If a day is not between the start and finish dates it is to display 00.0

=IF(AND(V$15>=$I20, V$15<=$J20),V20*$T20,"00.0")

In the above:
V$15 is the date of the month
$I20 is the start date of the task
$J20 is the finish date of the task
V20 is a number I want to multiply by a preassigned value ($T20).

Recommendations are greatly appreciated.

Michael
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
I'm copying both down and to the right.
Tasks are listed down.
Dates are listed to the right.

In which cell did you enter this formula:

=IF(AND(V$15>=$I20, V$15<=$J20),V20*$T20,"00.0")

and what needs it to become if it is copied down and to the right respectively?
 
Upvote 0
This formula is in cell W20. This formula is repeated every 2nd cell to the right and essentially every cell down for 90 tasks.

Start date is June 8 2011.
Finish date is August 1 2011.

Thanks,

Michael
 
Upvote 0
I've got a print screen shot but unable to attach it or the file.
Can you email me at xxx and I'll send it to you?
Thanks,
Michael
 
Last edited by a moderator:
Upvote 0
Chief, Its just a formula feed error.

In col v,x,z....etc. both condition compare are for start date not finish date.

Just change I to J ....i.e. in cell V23

Use
IF(AND(V$15>=$I23,V$15<=$J23),V$14,"00.0") instead of
IF(AND(V$15>=$I23,V$15<=$I23),V$14,"00.0")


But I have a small question....

What if U overshoot the baseline finish?
Why the Task deliverables are not tracked individually.
Will the Gantt descript Planned v/s Actuals
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,879
Members
452,948
Latest member
Dupuhini

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