CUMPRINC function in Google Sheets
Calculates the cumulative principal paid over a range of payment periods for an investment based on constant-amount periodic payments and a constant interest rate.
=CUMPRINC(rate, number_of_periods, present_value, first_period, last_period, end_or_beginning)CUMPRINC syntax and parameters
Six arguments, six required.
- ratenumberRequired
The interest rate.
- number_of_periodsnumberRequired
The number of payments to be made.
- present_valuenumberRequired
The current value of the annuity.
- first_periodnumberRequired
The number of the payment period to begin the cumulative calculation. first_period must be greater than or equal to 1.
- last_periodnumberRequired
The number of the payment period to end the cumulative calculation. last_period must be greater than first_period.
- end_or_beginningnumberRequired
Whether payments are due at the end (0) or beginning (1) of each period.
CUMPRINC examples
Formulas you'll actually reuse.
Principal repaid in the first year of the mortgage:
=CUMPRINC(5%/12, 360, 250000, 1, 12, 0)Result
-3688.41The share of the loan paid down after five years:
=-CUMPRINC(5%/12, 360, 250000, 1, 60, 0) / 250000Result
0.0817
CUMPRINC in Excel
Same name — your formula ports as-is.
Try CUMPRINC in the playground
Edit the example — nothing to install.
Preloaded with the CUMPRINC formula from Example 1 — change anything and watch it respond.
Related functions
More ways Google Sheets gets this done.
- ACCRINTCalculates the accrued interest of a security that has periodic payments.FinancialExcel
- ACCRINTMCalculates the accrued interest of a security that pays interest at maturity.FinancialExcel
- AMORLINCReturns the depreciation for an accounting period, or the prorated depreciation if the asset was purchased in the middle of a period.FinancialExcel
- COUPDAYBSCalculates the number of days from the first coupon, or interest payment, until settlement.FinancialExcel
- COUPDAYSCalculates the number of days in the coupon, or interest payment, period that contains the specified settlement date.FinancialExcel
- COUPDAYSNCCalculates the number of days from the settlement date until the next coupon, or interest payment.FinancialExcel