determining monthly amounts based on date

snoozing

New Member
Joined
Aug 11, 2009
Messages
14
i have a listing of contracts with start & end dates. each contract has a set amount. im trying to create a sheet that would track how much is earned each month based on the dates of the contracts. is this possible with a formula & not vba? below is what im trying to accomplish

AmountStartEndJanFebMarApr
100,0001/1/124/30/1225,00025,00025,00025,000
40,0002/1/123/31/12020,00020,0000

<TBODY>
</TBODY>
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I think I was able to accomplish what you needed by adding a helper row above the months,entering the following formula in cell D3 and dragging it out:

Code:
[/B]=IF(AND(MONTH($B3)<=D$1,MONTH($C3)>=D$1),$A3/(MONTH($C3)-MONTH($B3)+1),0)[B]

Excel 2007
ABCDEFG
11234
2amountstartendJanFebMarApr
3100,0001/1/20124/30/201225000250002500025000
440,0002/1/20123/31/20122000020000

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1
 
Upvote 0
this works beautifully!!!!

only problem is that my contracts have dates extending beyond a year so now i have manually adjust those

but thanks!
 
Upvote 0

Forum statistics

Threads
1,219,161
Messages
6,146,657
Members
450,706
Latest member
LGVBPP

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