aurelius33
New Member
- Joined
- May 28, 2024
- Messages
- 4
- Office Version
- 365
- Platform
- Windows
Greetings, I'm in search of a formula to calculate the principal amount on loans with daily interest. Currently, this is done inside of a program; which is far too rigid. By moving things into Excel, I gain a ton of flexibility. The payment is straightforward. I have reversed-engineered the math and figured out the program does not use a "banker year/month" for the calculations. Also, interest is accruing from the start date and continues until a payment is made. You'll see in the first row the interest is higher than expected using IPMT, etc. I figure the daily interest for the period with: balance*rate/365days
I can get close with PPMT but it still isn't dead-on. Also, simply subtracting the interest from the payment for each period working 99% of the time. Only issue is the oddball rounding that pops up here and there. Below is an example of data I am working with to recreate the output in Excel:
When I subtract the interest from the payment for period 2, I end up with 667.05 and not 667.04.
I can get close with PPMT but it still isn't dead-on. Also, simply subtracting the interest from the payment for each period working 99% of the time. Only issue is the oddball rounding that pops up here and there. Below is an example of data I am working with to recreate the output in Excel:
LoanScrubber.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
K | L | M | N | O | P | Q | |||
2 | Amt Financed: | $ 65,610.00 | Weeks: | 52 | |||||
3 | Interest Rate: | 16.50% | Num Days / Year: | 365 | |||||
4 | Loan Start Date: | 23-Apr | |||||||
5 | Num of Pmts: | 86 | |||||||
6 | |||||||||
7 | Date | Pmt Num | Pmt | Prin | Interest | Balance | |||
8 | 4-May | 1 | 872.93 | 546.68 | 326.25 | 65063.32 | |||
9 | 11-May | 2 | 872.93 | 667.04 | 205.89 | 64396.28 | |||
10 | 18-May | 3 | 872.93 | 669.16 | 203.77 | 63727.12 | |||
11 | 25-May | 4 | 872.93 | 671.27 | 201.66 | 63055.85 | |||
Payments |
When I subtract the interest from the payment for period 2, I end up with 667.05 and not 667.04.