Return a value every 3 months from a start date

fasullo

New Member
Joined
Aug 7, 2013
Messages
27
Hi, If I have a start date of 7/4/2016, end date 12/31/18 and I need $15,000 to appear on July 2016, then October 2016, then January 2017, every 3 months until the end date --> what formula does this?

Column A
Invoice Start DateInvoice EndInvoice Amount7/31/20168/31/20169/30/201610/31/201611/30/201612/31/20161/31/2017
7/4/201612/31/201815,00015,00015,00015,000
7/4/201612/31/201815,000
7/8/201612/31/20184,000
7/12/201612/31/20182,000

<tbody>
</tbody>

https://docs.google.com/spreadsheets/d/1uGh3xO0fFdMWzoW6Hjz74zNxjUTSCzLyPdJGY97lrZA/edit?usp=sharing
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
You can highlight the first 15,000 (and the 2 blank cells to the right) and copy/paste to the right, or

=IF(MOD(COLUMN(A1),3)=1,15000,"")

in D2 dragged to the right
 
Last edited:
Upvote 0
Thank-you for the reply. this formula is closer. I need the formula to be dynamic if I change the start & end dates.
 
Upvote 0

Forum statistics

Threads
1,215,180
Messages
6,123,502
Members
449,100
Latest member
sktz

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