FVSCHEDULE function in Google Sheets
Calculates the future value of some principal based on a specified series of potentially varying interest rates.
=FVSCHEDULE(principal, rate_schedule)FVSCHEDULE syntax and parameters
Two arguments, two required.
- principalnumberRequired
The amount of initial capital or value to compound against.
- rate_schedulerangeRequired
A series of interest rates to compound against the principal. rate_schedule must be either a range or array containing the interest rates to compound, in sequence. These should be expressed either as decimals or as percentages using UNARY_PERCENT, i.e. 0.09 or UNARY_PERCENT(9) rather than 9.
FVSCHEDULE examples
Formulas you'll actually reuse.
$10,000 after three years at 5%, then 4%, then 6%:
=FVSCHEDULE(10000, {0.05, 0.04, 0.06})Result
11575.2A principal grown through a column of ten yearly rates:
=FVSCHEDULE(B2, C2:C11)
FVSCHEDULE in Excel
Same name — your formula ports as-is.
Try FVSCHEDULE in the playground
Edit the example — nothing to install.
Preloaded with the FVSCHEDULE 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