CUM.RENTE
Met de formule CUM.RENTE kan je de cumulatieve rente bepalen die tussen de begin periode en eind periode is betaald aan een lening.
Toepassing
=CUM.RENTE(rente;aantal_termijnen;hw;begin_periode;einde_periode;type_getal)
- rente: Het rentepercentage.
- aantal_termijnen: Het aantal termijnen.
- hw: De huidige waarde.
- begin_periode: De eerste termijn genummerd vanaf 1.
- einde_periode: De laatste termijn.
- type_getal: Type betaling.
0: Aan het einde van de termijn
1 Aan het begin van de termijn
Opmerking
- #GETAL! word weergegeven als rente, aantal_termijnen of hw kleiner is dan 0, als begin_periode of einde_periode kleiner is dan 1, als begin_periode groter is dan einde_periode of als getal een ongeldige invoer heeft.
Bijvoorbeeld
Bij dit voorbeeld maken we gebruik van onderstaande tabel. Je kan hem kopiëren en plakken in Excel en meedoen.
Argument | Gegevens |
Rente | 0,04 |
Aantal_termijnen | 30 |
Hw | 250000 |
Begin_periode | 13 |
Einde_periode | 24 |
Type_getal | 0 |
Hier hoort deze cumulatieve (cum) rente formule bij:
=CUM.RENTE(B2/12;B3;B4;B5;B6;B7)
Het antwoord is -4281,64. Afgerond op 2 decimalen met de formule AFRONDEN.
Hello, could you please point me in the right direction.
I need a formula for CUMIPMT with FV as last additional payment.
The formule must be WITHOUT references to a build table.
Example
P = 24 payment last day of month
Principal = 8995
Payment per P = € 292,06
P 24 = last payment + € 3000,-
Thank you in advance
Sure, I can help you
To calculate the cumulative interest paid over a range of payments with a final additional payment (FV) without using references to a built table, you can use the following formula:
CUMIPMT(rate, nper, pv, start_period, end_period, type) + FV
Where:
rate: The interest rate per period.
nper: The total number of payment periods.
pv: The present value or principal amount.
start_period: The first period for which you want to calculate the interest.
end_period: The last period for which you want to calculate the interest, including the final additional payment.
type: 0 or 1. If type is 0 or omitted, payments are due at the end of the period. If type is 1, payments are due at the beginning of the period.
FV: The final additional payment (future value) you want to include in the cumulative interest calculation.
For your specific example, assuming the interest rate is provided, you can use the formula like this:
=CUMIPMT(rate, 24, -Principal, 1, 24, 0) + 3000
Where:
rate: The interest rate per period (for example, if the annual rate is 5%, and payments are monthly, the monthly rate would be 5%/12).
Principal: The principal or initial loan amount (8995 in your case, but use a negative value in the formula).
FV: The final additional payment (3000 in your case).
Please replace “rate” with the appropriate interest rate for your loan, and the formula should give you the cumulative interest paid, including the final additional payment.