HomeGoogle DocsSpreadsheetHow to Use the FVSCHEDULE Function in Google Sheets

How to Use the FVSCHEDULE Function in Google Sheets

Published on

The FVSCHEDULE function in Google Sheets is simple to learn if you know the use of the FV function.

Unlike in FV where a fixed interest rate is applied, in the FVSCHEDULE function, we can specify a series of potentially varying interest rates as an array.

The purpose of the FVSCHEDULE function is to return the future value aka FV of the initial principal payment (PV) based on a series of compounding interest rates.

Compounding interest rates are calculated based on both the initial principal and the accumulated interest from previous periods. In the formula, you just need to specify the rates as an array.

The FVSCHEDULE function in Google Sheets is useful in investment decision making.

For example, assume an investment guarantees a certain (let us say 4%) percentage for the first year, 5% in the second year, and 6% in the third year. If so, we can evaluate this investment using the FVSCHEDULE function.

You can learn more about this financial function usage after the Syntax part below.

Syntax of the FVSCHEDULE Function in Google Sheets

Syntax:

FVSCHEDULE(principal, rate_schedule)

Arguments:

principal – The amount of initial capital or value to compound against (Present Value aka PV).

rate_schedule – An array/range of interest rates to compound against the principal.

I will explain more about how to specify the rate_schedule in the FVSCHEDULE function in Google Sheets with an example below.

Example to the Use of the FVSCHEDULE Function in Google Sheets

Suppose I invest $ 10,000 that will return 4% in the first year, 3.5% in the second year, and 3% in the third year.

Let us use the FVSCHEDULE function to calculate the future value of this particular investment.

FVSCHEDULE Function in Google Sheets - Example

In the above formula the PV is in cell D3 and the varying interest rates are in the range D4:D6.

As you can see, the formula returns $11,086.92.

Usage Notes:

You can specify the rate_schedule three ways in the formula. They are as follows.

  1. In a percentage format (in D4:D6) as per the above formula example.
  2. Numbers within UNARY_PERCENT as;
    • The formula to be used in D4 =UNARY_PERCENT(4)
    • in D5 =UNARY_PERCENT(3.5)
    • In D6 =UNARY_PERCENT(3)
  3. Decimals like 0.04, 0.035, and 0.03 in D4, D5, and D6 respectively.

If you hardcode the above values, i.e. the PV and the Interest Schedule within the FVSCEDULE function in Google Sheets, the formula would be as follows.

=FVSCHEDULE(10000,{0.04,0.035,0.03})

The formula treats, blank cells, if any, in the cells as 0. No doubt, the formula would return #VALUE! error incase any text/string (non-numeric values) present in the cells.

Fixed Interest Rates in the Interest Schedule

This section is meant to help you understand the difference between the FV and FVSCHEDULE functions in Google Sheets.

Here are two examples. One using the FV and the other using the FVSCHEDULE.

Here are my two formulas.

In cell D8;

=FVSCHEDULE(D3,D4:D6)

See the interest rate is 4% in all the three years (please refer to the below image).

The above formula would return $11,248.64.

In cell H8;

=FV(H3,H4,H5,H6)

This formula would also return the same result.

FV vs FVSCHEDULE

What I am trying to say is if the interest rate is fixed, then use the FV function whereas if the interest rates are varying, then use the FVSCHEDULE function.

That’s all. Enjoy!

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

More like this

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.