How to Calculate Compound Interest in Excel (Step-by-Step Guide)

Compound Interest Calculator

Please enter valid positive numbers in all fields.

Investment Results

Principal Amount ₹0
Total Interest Earned ₹0
Maturity Amount ₹0
By investing ₹0 at an interest rate of 0% for 0 years, you will earn ₹0 in pure interest.

Quick Answer: To calculate compound interest in Excel, use the formula =P*(1+r/n)^(n*t) in any cell, or use the built-in FV function: =FV(rate/n, n*t, 0, -P). Enter your principal, annual rate, compounding frequency, and time — Excel does the rest in seconds.

How to calculate compound interest in Excel formula examples

What is Compound Interest?

Compound interest means you earn interest on your original amount plus the interest already added. Your money grows faster because each period's interest builds on the last.

Say you deposit ₹10,000 at 10% annual interest. After Year 1, you have ₹11,000. In Year 2, interest applies to ₹11,000 — not the original ₹10,000. That extra push is compounding.

Simple interest stays flat. Compound interest snowballs.

Compound Interest Formula

The standard mathematical formula for compound interest is:

A = P(1 + r/n)(n × t)
VariableMeaningExample
AFinal amount (principal + interest)What you're solving for
PPrincipal — your starting amount₹10,000
rAnnual interest rate (decimal)10% → 0.10
nCompounding periods per year12 for monthly, 4 for quarterly, 1 for yearly
tTime in years5

To get only the interest earned, simply subtract the principal from the final amount:

Compound Interest = A − P

How to Calculate Compound Interest in Excel

There are two reliable methods to perform this calculation in Excel. Both give the exact same answer, so pick whichever feels most comfortable for your workflow.

Method 1: Using the Basic Mathematical Formula

This approach involves typing the math formula directly into a cell, referencing your input variables.

Step 1 — Open a blank Excel sheet and label your inputs like this:

RowCell A (Labels)Cell B (Values)
1Principal100000
2Annual Rate0.08
3Compounding Per Year12
4Years5

Step 2 — Click cell B5 and type this exact formula:

=B1 * (1 + B2/B3) ^ (B3 * B4)

Press Enter. The cell will show ₹1,48,984.57 — that is your final maturity amount after 5 years.

Step 3 — For interest only, click B6 and type:

=B5 - B1

Result: ₹48,984.57 earned purely from the magic of compounding.

What happened inside the formula:

  • B2/B3 divides 0.08 by 12 → yielding a monthly rate of 0.00667
  • B3*B4 multiplies 12 × 5 → creating 60 total compounding periods
  • (1 + 0.00667)^60 raises the growth factor across all periods
  • Finally, multiplying by the principal gives you your future value

You can also replace the ^ operator with Excel's POWER function:

=B1 * POWER((1 + B2/B3), B3 * B4)

Method 2: Using the Excel FV Function

Excel has a built-in FV (Future Value) function designed exactly for this. It is cleaner, less prone to typos, and faster to implement.

Syntax: =FV(rate, nper, pmt, [pv], [type])

ParameterWhat to EnterOur Example
rateInterest rate per period (annual rate ÷ n)0.08/12
nperTotal number of periods (n × t)12*5
pmtPayment each period (0 if no extra deposits)0
pvPresent value — enter as negative-100000
type0 = end of period, 1 = beginning (optional)0

Step 1 — Using the same input cells as before (B1 through B4).

Step 2 — In cell B5, type:

=FV(B2/B3, B3*B4, 0, -B1)

Press Enter. Result: ₹1,48,984.57

Why is PV negative? Excel treats money you invest as an outflow (cash leaving your pocket). If you enter a positive PV, the result flips to a negative number. Using -B1 keeps your final output positive and readable.

Example Calculation in Excel

Let's walk through a real scenario with actual numbers.

Scenario: You invest ₹2,00,000 in a fixed deposit at 7.5% annual interest, compounded quarterly, for 8 years. How much do you get back?

Set up your sheet:

RowAB
1Principal200000
2Annual Rate0.075
3Compounding/Year4
4Years8

Using the basic formula in B5: =B1 * (1 + B2/B3) ^ (B3 * B4)

Using FV in B5: =FV(B2/B3, B3*B4, 0, -B1)

Result: ₹3,62,384.54

Interest earned: ₹3,62,384.54 − ₹2,00,000 = ₹1,62,384.54

💡 Smart Financial Tip: If you're comparing this with recurring deposit or annuity schemes, use this annuity calculator for better financial planning to see how regular monthly payouts stack up against lump-sum compounding.

Monthly vs Yearly Compounding in Excel

The more frequently interest compounds, the more you earn. Here's the difference on a ₹1,00,000 investment at 10% for 5 years based on the compounding frequency:

Compoundingn ValueFormula in ExcelFinal Amount
Yearly1=FV(0.10/1, 1*5, 0, -100000)₹1,61,051
Quarterly4=FV(0.10/4, 4*5, 0, -100000)₹1,63,862
Monthly12=FV(0.10/12, 12*5, 0, -100000)₹1,64,531
Daily365=FV(0.10/365, 365*5, 0, -100000)₹1,64,866

Monthly compounding earns ₹3,480 more than yearly compounding on the same principal and rate. Daily pushes it slightly further. The gap widens dramatically with larger amounts and longer time frames.

Common Mistakes in Excel Calculations

  1. Entering rate as a whole number: Typing 10 instead of 0.10 for 10% inflates your result absurdly. Always convert: divide by 100 or type the decimal directly.
  2. Forgetting to divide rate by compounding periods: =FV(0.10, 60, 0, -100000) treats 10% as the monthly rate. You need =FV(0.10/12, 60, 0, -100000). Massive difference.
  3. Mixing up nper: If compounding monthly for 5 years, nper = 60, not 5. Always multiply: n × t.
  4. Ignoring cell formatting: A cell formatted as text won't calculate. Right-click → Format Cells → Number or Currency.

Tips to Use Excel for Interest Calculations

  • Use named cells. Select B1, click the Name Box (left of formula bar), type Principal. Now your formula reads =FV(Rate/N, N*Years, 0, -Principal) — far easier to audit.
  • Build a comparison table. List different rates in column A, different time periods across row 1, and fill the grid with FV formulas. One glance shows your best option.
  • Lock cells with dollar signs. When copying formulas across rows, use $B$2 to keep references fixed.
  • Try Goal Seek for reverse calculations. Go to Data → What-If Analysis → Goal Seek. Set the final amount cell to your target, and let Excel find the required rate or time.
  • Format currency properly. Select your result cells → Ctrl+1 → Currency → choose ₹ symbol and 2 decimal places.

Frequently Asked Questions (FAQs)

What is the compound interest formula in Excel? +
Use =P*(1+r/n)^(n*t) in a cell, where P is principal, r is annual rate as decimal, n is compounding frequency, and t is years. Alternatively, use =FV(r/n, n*t, 0, -P) for the same result with Excel's built-in function.
How do I calculate monthly compound interest in Excel? +
Set n to 12. Then use =FV(annual_rate/12, 12*years, 0, -principal). For example, ₹50,000 at 9% for 3 years compounded monthly: =FV(0.09/12, 36, 0, -50000) returns ₹65,486.
Why does Excel's FV function return a negative number? +
FV flips the sign of your present value input. If you enter PV as positive (100000), the result comes back negative. Enter PV as negative (-100000) and your output stays positive.
Can I calculate simple interest in Excel too? +
Yes, simply type =Principal * Rate * Time in any cell. For ₹1,00,000 at 8% for 3 years: =100000*0.08*3 gives ₹24,000. No compounding involved.
How do I find what interest rate I need to reach a target amount? +
Use Goal Seek. Click Data → What-If Analysis → Goal Seek. Set the FV cell to your target amount, and change the rate cell. Excel calculates the required rate automatically.
What if I make regular monthly deposits along with my initial investment? +
Add the deposit amount to the pmt parameter. Example: ₹1,00,000 initial plus ₹5,000 monthly at 10% for 10 years: =FV(0.10/12, 120, -5000, -100000). The negative sign on pmt means cash going out of your pocket.
Is there a difference between POWER and ^ in Excel? +
No functional difference. =POWER(1.05, 10) and =1.05^10 return identical results. POWER is just more readable in complex formulas.

Conclusion

The compound interest formula in Excel takes under a minute to set up — whether you type the math directly or use the FV function. Plug in your principal, rate, compounding frequency, and time, and Excel handles the rest. Start with the FV method if you want fewer errors and cleaner sheets, and save your file as a reusable template so every future calculation takes seconds instead of starting from scratch.

Leave a Reply

Your email address will not be published. Required fields are marked *