Good day!
Hoping for some help on this problem. I'm trying to make a dynamic loan amortization table. Is it possible to make an amortization table that adjusts its principal and interest payments based on dynamic loan drawdowns instead of one lump-sum drawdown at the start? Rough idea below. Would appreciate any help!
Hoping for some help on this problem. I'm trying to make a dynamic loan amortization table. Is it possible to make an amortization table that adjusts its principal and interest payments based on dynamic loan drawdowns instead of one lump-sum drawdown at the start? Rough idea below. Would appreciate any help!
Cell Formulas | ||
---|---|---|
Range | Formula | |
J3:M3 | J3 | =J71 |
N3 | N3 | =INDEX($N$6:$N$70,MATCH($D$9*12,$I$6:$I$70,0)) |
N5 | N5 | =D8 |
K6 | K6 | =PMT($D$10/$D$6,$D$9*$D$6,$D$8) |
L6:L70 | L6 | =IF($I6=0,0,PPMT($D$10/$D$6,I6,$D$9*$D$6,$D$8)) |
M6:M70 | M6 | =IF(I6=0,0,IPMT($D$10/$D$6,I6,$D$9*$D$6,$D$8)) |
N6:N70 | N6 | =N5+L6 |
K7:K70 | K7 | =IF($I7=0,0,$K$6) |
D8 | D8 | =5600000*0.8 |
I7:I70 | I7 | =IF(I6=0,0,IF((I6+1)<=($D$9*12),I6+1,0)) |
J71:M71 | J71 | =SUM(J6:J70) |