Trimester/Semester/Yearly Formula

munoz83

New Member
Joined
Oct 26, 2018
Messages
1
Hi,

I'm working on a personal file to handle my insurance portfolio and I need to identify which ones have to pay depending on what they bought ( By trimester,semester or yearly).
The tricky part is that the start date has to remain the same.
i.e. Start date : Nov 1st 2017
Type: Trimester
First payment: Feb 1st 2018
Second Payment: May 1st 2018...... and so on.

Hope someone can help me , thank you!!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Munoz83,

For Trimesters you may use for the first due date:

=DATE(IF(MONTH($I$4)+3>12,YEAR($I$4)+1,YEAR($I$4)),IF(MONTH($I$4)+3>12,MONTH($I$4)+3-12,MONTH($I$4)+3),DAY($I$4))

$I$4 has 11/1/2017, for the second due date use +6 instead of +3 in the formula, for the third due date use +9, for next year use +12.

For Semester use +6
For Yearly use +12, this formula can be simplified, but it works as is.

Test it, please. I hope it helps!
 
Upvote 0
Put your start dates in column A
Put in column B the payment month intervals : 3 for trimester, 6 for semester, 12 for yearly
Put in column C the payment number

Then : =EDATE(A2,B2*C2)
 
Upvote 0
Hi,

Enter 1st Due Date in Column B, Column C formulas copied across, if your setup is vertical, adjust formula to suit:


Book1
ABCDEFGHIJ
11st Due Date
2Trimester11/1/20172/1/20185/1/20188/1/201811/1/20182/1/20195/1/20198/1/201911/1/2019
3Semester12/1/20176/1/201812/1/20186/1/201912/1/20196/1/202012/1/20206/1/202112/1/2021
4Yearly1/1/20181/1/20191/1/20201/1/20211/1/20221/1/20231/1/20241/1/20251/1/2026
Sheet353
Cell Formulas
RangeFormula
C2=EDATE(B2,3)
C3=EDATE(B3,6)
C4=EDATE(B4,12)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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