How to Calculate Compound Interest for Recurring Deposit in Excel (2024)

Get FREE Advanced Excel Exercises with Solutions!

If you are looking for some special tricks to learn how to calculate compound interest for recurring deposit in Excel, you’ve come to the right place. In this short tutorial, I will show how to calculate compound interest (maturity value) for recurring deposit in Excel. The following image is the overview of the whole article.

How to Calculate Compound Interest for Recurring Deposit in Excel (1)

If you don’t have a tight budget, saving will be tough for you. But saving is important in life for so many reasons. We want to save:

  • For our emergency fund
  • For making our life debt-free
  • For our retirement
  • For our children’s education
  • And for building wealth

“Do not save what is left after spending, but spend what is left after saving.” – Warren Buffett

For some people, saving is tough. For these types of people, making a recurring deposit every month to their savings account and getting a good amount after some years is a good option.

This Recurring Deposit (RD) is a popular saving scheme in the Indian sub-continent. I am from Bangladesh and a recurring deposit (RD) is a very popular scheme in my country, too.

Recurring Deposit (RD) is popular for the following reasons:

  • Investors can save a small amount of money every month
  • This scheme forces them to save every month
  • Safe and assured return on their investments
  • Income tax is lower or nil in this scheme

Let me now show you how to calculate the compound interest (maturity value) of a recurring deposit in Excel. It is a good practice to know how the whole thing works for your investment. Never be in the dark when this is about your personal finances.

Table of Contents Expand

Functions That We Will Use to Calculate Compound Interest for Recurring Deposit in Excel

Excel has made our lives much easier. Using the FV function, you can easily calculate the Maturity Value (Future Value) of your recurring deposit for any period.

Complexity arises when you make deposits monthly but the Bank compounds your money quarterly or in different periods. Don’t worry. I will make things easier for you.

We will explain the whole calculation step by step.

Some Excel functions, we shall use:

1) FV Function

FV function returns the future value of an investment based on periodic, constant payments and a constant interest rate.

Syntax of FV function: FV(rate, nper, pmt, pv, type)

Here,

  • rate: The Interest rate per period
  • nper: Total number of periods
  • pmt: The payment made in each period
  • pv: Present value
  • type: Type of payment. Payments can be of two types: the Beginning of the period (1) and the End of the period (omitted or 0).

2) EFFECT Function

EFFECT function returns the effective annual interest rate.

Syntax of EFFECT Function: EFFECT(nominal_rate, npery)

Here,

  • nominal_rate: Nominal Annual Interest Rate
  • npery: Number of compounding will happen in a year

For example, your bank provides the Nominal Interest Rate is 6% per annum. Now you make a deposit of the amount of $100 with a bank for the next 1 year and the bank compounds your money quarterly.

What will be your effective rate or return?

Your Rate per Quarter is: 6%/4 = 1.50%. This is because your money is compounded 4 times per year. So, nominal interest is divided by 4 to get the Rate per Quarter.

Look at the image below.

How to Calculate Compound Interest for Recurring Deposit in Excel (2)

You see that:

  • At the end of the first quarter, your ending balance will be $101.50. 1.50% interest is applied to the Beginning Balance of $100.
  • 50 is the beginning balance at the start of the 2nd quarter. At the end of the 2nd quarter, your ending balance will be $103.02. 1.50% interest is applied on the beginning balance of $101.50
  • At the end of the fourth quarter, your ending balance will be: $106.14

Your nominal interest rate is 6%. But because of 4 compoundings per year, you’re getting a 6.14% return on your investment.

We can use the EFFECT function in the cell F14 to get the above Effective Rate:

=EFFECT(6%,4)

This is shown also in the image.

3) NOMINAL Function

The NOMINAL function is the opposite of the EFFECT function. It returns the Nominal Interest Rate from an Effective Interest Rate.

Syntax of NOMINAL Function: NOMINAL (effect_rate, npery)

We use this function in cell F16 to get the Nominal Interest Rate from an Effective Interest Rate.

=NOMINAL(6.14%,4)

How to Calculate Compound Interest for Recurring Deposit in Excel: 2 Easy Methods

In the following section, we will use two effective and tricky methods to calculate compound interest for recurring deposits in Excel. In the first method, we will use the FV function, and in the second method, we will use the direct method. You should learn and apply these to improve your thinking capability and Excel knowledge. We use the Microsoft Office 365 version here, but you can utilize any other version according to your preference.

1. Using FV Function

Here, we will demonstrate how to calculate compound interest for recurring deposit in Excel. Our Excel dataset will be introduced to give you a better idea of what we’re trying to accomplish in this article. In this method, we will use FV, EFFECT, NOMINAL, and VLOOKUP functions.

  • Here, cell C5 is the Recurring Deposit (RD). The amount you will deposit every month (or any period). We named this cell pmt.
  • Next, cell C6 is the Payment Frequency. It is a drop-down list. In most cases, it is monthly. But you can select any period from the drop-down.
  • Then, cell C7 indicates the Number of Years. For a total number of years you will keep depositing your fund. As output, we will get the total number of periods (nper) by multiplying the Number of Years by the Number of Periods per Year (npery).
  • Annual Percentage Rate (APR) is represented in cell C8. This is the nominal interest rate your bank offers to you.
  • Afterward, cell C9 illustrates the Interest Compounded. Indian Banks compound your investment quarterly. It can differ from bank to bank. This is also a drop-down list. So, you can choose any compounding frequency.

How to Calculate Compound Interest for Recurring Deposit in Excel (3)

Let’s walk through the following steps to calculate the compound interest (maturity value) of recurring deposits in Excel.

📌 Steps:

  • First of all, we have also calculated the number of periods per year (npery) in cell D6 using Excel’s VLOOKUP function.

=VLOOKUP(C6,periodic_table,3,0)

  • Then, press Enter.
  • Therefore, the output will look like this.

How to Calculate Compound Interest for Recurring Deposit in Excel (4)

  • Next, to calculate nper (total number of payments) in cell D7, type the following formula.

=C7*npery

  • Then, press Enter.
  • Therefore, you will get the following output.

How to Calculate Compound Interest for Recurring Deposit in Excel (5)

  • Now, you’re seeing the Number of Compounds per Year. We will get it using the VLOOKUP Excel function in cell D9:

=VLOOKUP(C9,periodic_table,3,0)

  • Then, press Enter.

Just remember that your Interest Compounding Frequency must be equal to or greater than the Payment Frequency. For example, if your Payment Frequency is Monthly, you cannot choose the Compounding Frequency value as Weekly, Bi-weekly, or Semi-monthly.

How to Calculate Compound Interest for Recurring Deposit in Excel (6)

  • What we need is the same yearly effective rate. So, we shall calculate the effective rate for Quarterly compounding using the following formula.

=EFFECT(nominal_rate,D9)

  • Then, press Enter.
  • Therefore, you will get the output as 9.041%.

How to Calculate Compound Interest for Recurring Deposit in Excel (7)

  • Now we need a nominal rate by using the following formula that will give us the same effective rate with Monthly compounding.

=NOMINAL(D12,npery)

  • Then, press Enter.
  • Therefore, you will get the output as 8.687%.

💡 Note:

👉 You can cross-check it this way: whether this nominal rate (8.687%) will provide the same effective rate with monthly compounding: =EFFECT(8.687%,12) =9. 041%. Same.

How to Calculate Compound Interest for Recurring Deposit in Excel (8)

  • Now, we need the rate for a period (monthly) using the following formula.

=D13/D6

  • Then, press Enter.
  • Therefore, you will get the output as 0.724%.

How to Calculate Compound Interest for Recurring Deposit in Excel (9)

  • Now, We will use the FV function in cell D16 to the maturity value. The formula is as follows:

=FV(rate,nper,-pmt,pv,type)

  • Then, press Enter.
  • Therefore, you will get the output as $20,627.38.

How to Calculate Compound Interest for Recurring Deposit in Excel (10)

The following image shows the whole process that we have used to calculate the recurring deposit.

How to Calculate Compound Interest for Recurring Deposit in Excel (11)

Read More:Formula for Monthly Compound Interest in Excel

2. Applying Direct Method

This is a step-by-step calculation to get the Maturity Value of your Recurring Deposit (RD) for 36 periods (3 years). We have used the same PMT value, the same rate per period here. But the procedure is direct. See the image below that shows the whole process that we have used to calculate the recurring deposit by applying the direct method.

How to Calculate Compound Interest for Recurring Deposit in Excel (12)

Let us explain. Let’s walk through the following steps to calculate the recurring deposit.

📌 Steps:

  • First of all, type the serial number of the payment in column Payment No.
  • Next, we have used the same pmt value in the Recurring Deposit column, and the same rate per period in the Rate column.
  • Then, enter the recurring deposit value in cell E5.
  • Afterward, type the following in cell E6 to calculate the beginning balance.

=G5+C6

  • Then, press Enter.

How to Calculate Compound Interest for Recurring Deposit in Excel (13)

  • Next, type the following in cell F5 to calculate the interest.

=E5*D5

  • Then, press Enter.

How to Calculate Compound Interest for Recurring Deposit in Excel (14)

  • Next, type the following in cell G5 to calculate the ending balance.

=E5+F5

  • Then, press Enter.
  • Accordingly, the Maturity Value of our Recurring Deposit for 36 periods (3 years) will be 20627.38, which is the same value as the FV function’s method.

How to Calculate Compound Interest for Recurring Deposit in Excel (15)

  • To add more periods to this table, just copy the last row to your desired level.

How to Calculate Compound Interest for Recurring Deposit in Excel (16)

Read More: Methods to Apply Continuous Compound Interest Formula in Excel

Download Practice Workbook

Download the Excel workbook that I made while I was writing this article.

Calculate Compound Interest for Recurring Deposit.xlsx

Conclusion

If you have followed this article step by step, you have learned a very important lesson. Before using Excel, I struggled a lot to calculate even my wife’s recurring deposits and their Maturity Value. Now it is simple to me.
So, this is my way of calculating interest for recurring deposits in Excel. What is your feedback on this article? Was it useful? Did you face any problems using my calculator? Let me know in the comment box.

Related Articles

  • Excel Formula to Calculate Compound Interest with Regular Deposits
  • How to Calculate Compound Interest in Excel in Indian Rupees

<< Go Back to Compound Interest in Excel |Excel for Finance | Learn Excel

How to Calculate Compound Interest for Recurring Deposit in Excel (2024)

FAQs

How to Calculate Compound Interest for Recurring Deposit in Excel? ›

Use the FV function in the following manner: =FV(rate/nper, nper, -pmt, [pv], [type]), where 'rate' is the quarterly interest rate, 'nper' is the total number of quarters, 'pmt' is the monthly deposit, 'pv' is the present value (optional), and 'type' indicates when deposits are made (start or end of the period).

What is the formula for compound interest for a recurring deposit in Excel? ›

Yes, you can calculate returns from your RD investment by using the formula A = P x (1 + r/100)^nt, where, A = Total amount by the end of the period. P = Principal amount from which compounding will start. r = Annual rate of interest.

What is the formula for compound interest with regular deposits? ›

What is the compound interest formula, with an example? Use the formula A=P(1+r/n)^nt. For example, say you deposit $5,000 in a savings account that earns a 3% annual interest rate, and compounds monthly. You'd calculate A = $5,000(1 + 0.03/12)^(12 x 1), and your ending balance would be $5,152.

What is the monthly deposit compounding formula? ›

The formula of monthly compound interest is: CI = P(1 + (r/12) )12t - P where, P is the principal amount, r is the interest rate in decimal form, and t is the time.

What is the formula for continuous compound interest with monthly deposits? ›

This formula says, when an amount P is invested for the time 't' with the interest rate is r% compounded continuously, then the final amount is, A = P ert.

What is the easiest way to calculate compound interest? ›

How Compound Interest Works. Compound interest is calculated by multiplying the initial principal amount by one plus the annual interest rate raised to the number of compound periods minus one. The total initial principal or amount of the loan is then subtracted from the resulting value.

What is the formula for compound interest on a worksheet? ›

The formula for compound interest is A = P(1 + r)t , where A = total amount including previous interest earned, P = principal, r = interest rate, and t = time.

How do you find the compound amount of a deposit? ›

The formula for compound interest is A=P(1+rn)nt, where A represents the final balance after the interest has been calculated for the time, t, in years, on a principal amount, P, at an annual interest rate, r. The number of times in the year that the interest is compounded is n.

Is a compound interest calculated only on the deposited amount? ›

Compound interest is calculated on the principal amount and the accumulated interest of previous periods, and thus can be regarded as “interest on interest.”

Which bank gives 7% interest in RD? ›

SBI offers Recurring deposits at interest rates of 6.50% to 7% p.a. to other depositors, and 7.35% to 7.5% to senior citizens with a minimum monthly deposit of ₹100. The tenure for SBI RD ranges from 1 year to 10 years.

How much is 1000 per month in RD for 5 years? ›

Calculation shows that a monthly contribution of Rs 1000 towards the Post Office RD scheme will result in a corpus of Rs 70,431 lakh in 5 years. If you extend the account by another 5 years, the total corpus will be Rs 1.66 lakh in 10 years.

How to calculate interest per month in Excel? ›

=PMT(17%/12,2*12,5400)

The rate argument is the interest rate per period for the loan. For example, in this formula the 17% annual interest rate is divided by 12, the number of months in a year. The NPER argument of 2*12 is the total number of payment periods for the loan.

Top Articles
Latest Posts
Article information

Author: Corie Satterfield

Last Updated:

Views: 6162

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Corie Satterfield

Birthday: 1992-08-19

Address: 850 Benjamin Bridge, Dickinsonchester, CO 68572-0542

Phone: +26813599986666

Job: Sales Manager

Hobby: Table tennis, Soapmaking, Flower arranging, amateur radio, Rock climbing, scrapbook, Horseback riding

Introduction: My name is Corie Satterfield, I am a fancy, perfect, spotless, quaint, fantastic, funny, lucky person who loves writing and wants to share my knowledge and understanding with you.