Calculating Total Delinquent Interest for Adjustable Rate Loans

biscuit_bytes

New Member
Joined
Feb 12, 2017
Messages
6
Hi, I'm working on a project for my accounting class. Basically, I'm calculating total delinquent interest for several loans in default. The template looks like this:

Gnhx8MQ.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
ok, I did not mean to prematurely post the thread. And now I can't figure out how to edit my post, lol.

Anyway, I have a function in column F that calculates total delinquent interest. It looks like this:

=((YEAR(A2)-YEAR(E2))*12+MONTH(A2)-MONTH(E2))*(C2*D2/12)

Column A represents the current accounting cycle, Column E was the date of the last paid installment.

My issue pertains to adjustable rate loans. I have several loans that I need to calculate delinquent interests for, but these loans have several rate changes that I have organized in another spreadsheet. What would be the most efficient and accurate way to calculate the total delinquent interest for these loans?

I really wouldn't want to have to sit and make simple tables for each loan to calculate total delinquent interest for all of the loans. That would be terrible.

A function doesn't seem feasible, or does it?

Is there a macro that I can use to accomplish this?

Thank you in advance. :)
 
Upvote 0

Excel 2010
ABCDEF
1CycleIDUPBRateLastInterest
215-Jan-17000032410,071.003.78%1-Feb-1529,709.64
315-Jan-17000032410,071.003.78%1-Feb-1529,709.64
415-Jan-17000032410,071.003.78%1-Feb-1530,762.14
5
Interest
Cell Formulas
RangeFormula
F2=((YEAR(A2)-YEAR(E2))*12+MONTH(A2)-MONTH(E2))*(C2*D2/12)
F3=DATEDIF(E3,A3,"m")*C3*D3/12
F4=FV(D4/12,DATEDIF(E4,A4,"m"),0,-C4)-C4



Do the rate changes occur once per year?
Are the rate changes unique to particular loans?
Does the interest compound annually?
How did you calculate the amount shown for late interest?
 
Last edited:
Upvote 0
Hi Dave! First of all, thanks for responding!

Interest changes occur once a year. Rate changes only occur on certain loans; I'm able to identify those separately.
Interest does not compound on these loans per the investor's requirements (according to the assignment).

In this assignment, we're calculating interest on a scheduled basis. It does not compound.

If the borrower defaulted on 5/1/2012 and the UPB at the time was 345,000.00 with an interest rate of 3.25%, then the total delinquency should be:

Total Delinquent Interest = (345,000 * 3.25%/12) * number of delinquent months (from default date to month of 1/1/2017).

As you've shown, I have formula options to correctly calculate total delinquent interest. My problem arises with loans in which I have a different interest rate every year. I'm not sure what would be the most efficient way to calculate delinquent interest for loans with several interest rates (some loans in this project are 3-5 years delinquent).

With that being said, FVSchedule could possibly work, but FVSchedule will just calculate total interest for a 12 month period. Is there a way I can tweak the function to calculate interest while taking the default date, current cycle date, and also consider the effective date for the interest rate changes? I'm going to guess no, but I'm just a beginner :(
 
Upvote 0
How did you calculate the amount shown for late interest? See your post #1; the amount is different than what the formulas show.

FVSchedule works for multiple years but it compounds the interest.

You can prepare a worksheet with a couple of sample cases where the rate changes.
- show how you would manually calculate the interest

We may be able to provide a formula once we see your example.
 
Upvote 0

Forum statistics

Threads
1,216,091
Messages
6,128,775
Members
449,468
Latest member
AGreen17

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