comarcks

New Member
Joined
Jul 30, 2015
Messages
4
Hi Everyone,

I hope you're all doing fine. I need your help to get the correct formula for the #ofPaymentsMade and the NextPaymentSchedule. Below is sample table. I hope some can help me on this.
Start DateEnd DateDurationPayment Term# of Payments MadeNext Payment Schedule
10/01/201208/18/20164 YearsEvery 6 months
05/27/201205/05/20142 YearsEvery 6 months

<tbody>
</tbody>

Please let me know if you have questions.
 

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.
What is the logic? You mean as of today? Payments at the beginning or end of the term?

The first one 5 payments made (4/1/2013, 10/1/2013, 4/1/2014, 10/1/2014 and 4/1/2015) and next schedule 10/01/2015?
And the second: 4 payments made and no next schedule?
 
Upvote 0
4 years times 12 = 48 months divide by 6 months = 8 payments

what does next payment schedule mean

do you want to know, today, how many payments made and how many still to be paid ?
 
Upvote 0
Sorry, my bad. Yes I want to know how many payments has been made as of today's date. And what's the next payment schedule. Also, Thank you for bringing that up.Please add the remaining payments needed.

Thank you. Oldbrewer
 
Upvote 0
Starting at

A2 Start 01/10/2012
B2 End 18/08/2016
C2 Total payments =DATEDIF(A2,B2,"M")/6
D2 Payments Made =ROUNDDOWN(DATEDIF($A$2,TODAY(),"M")/6,0)
E2 Last paid =EDATE(A2,D2*6)
F2 Next payment due=EDATE(A2,(D2+1)*6)

All calculations use UK date format dd/mm/yy and are based upon todays date.
 
Upvote 0
Thank you BGY23. You're the best.

What about the second row? where it should have an output like "contract Finished" in the next payment due field.
 
Upvote 0
I had to change the formulas for if today() gretaer than the end date on the contract.


Try this.
C2 =ROUNDUP(DATEDIF(A4,B4,"M")/E4,0)
D2 =IF(TODAY()>B4,C4,ROUNDDOWN((DATEDIF(A4,TODAY(),"M")+E4)/E4,0))
F2 =IF(EDATE(A4,D4*E4)>B4,B4,EDATE(A4,D4*E4))
G2 =IF(TODAY()>B4,"Fully paid",MIN(EDATE(A4,(D4+1)*E4),B4))
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,634
Members
449,460
Latest member
jgharbawi

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