Compound Interest Formula Excel: 3 Methods, Examples, and Step-by-Step Calculations
Compound interest formula Excel: manual formula, FV function, amortization table. Calculate savings growth with examples and step-by-step instructions.

The compound interest formula in Excel calculates how money grows when interest earns interest. Whether you're projecting savings, analyzing investments, or planning retirement, Excel offers multiple methods to compute compound interest — from manual formulas to built-in financial functions. Understanding compound interest is one of the most valuable financial concepts, and Excel makes it easy to calculate.
What compound interest means. Interest earned on both principal AND previously-earned interest. Difference from simple interest (only on principal). Over time, compounding creates exponential growth. Albert Einstein reportedly called it 'the most powerful force in the universe.'
The compound interest formula. A = P(1 + r/n)^(n*t). A = final amount. P = principal. r = annual interest rate (decimal). n = compounding frequency per year. t = years.
Why Excel for compound interest. Built-in functions (FV, PV, RATE) handle complex scenarios. Easy to test different scenarios. Visualize with charts. Combine with other Excel features for comprehensive financial planning.
Common compounding frequencies. Annually (n=1). Quarterly (n=4). Monthly (n=12). Daily (n=365). Each affects final amount.
This guide covers 3 main methods to calculate compound interest in Excel: manual formula, FV function, and amortization schedule. With examples for retirement, savings goals, and investment analysis.
Formula Overview
- Math formula: A = P(1 + r/n)^(n*t)
- P: Principal (starting amount)
- r: Annual interest rate (decimal, e.g., 0.05 for 5%)
- n: Compounding frequency per year
- t: Years
- Excel manual formula: =P*(1+r/n)^(n*t)
- Excel FV function: =FV(rate/n, n*t, 0, -P)
- Monthly compounding: n=12
- Daily compounding: n=365
- Continuous compounding: A = Pe^(rt) (use EXP function)
Method 1: Manual compound interest formula. The most flexible approach.
Setup. Enter values in cells: B1 = Principal ($10,000). B2 = Annual rate (0.05 for 5%). B3 = Compounding per year (12 for monthly). B4 = Years (10).
Formula. In B5: =B1*(1+B2/B3)^(B3*B4). Returns final amount after compound growth.
Example. $10,000 at 5% compounded monthly for 10 years. =10000*(1+0.05/12)^(12*10) = $16,470.09. Money grew by $6,470.
Why this formula. Mathematical translation of A = P(1 + r/n)^(n*t). Each variable in your own cell. Easy to modify.
Compare with simple interest. =B1*(1+B2*B4) for simple interest. $10,000 at 5% for 10 years simple = $15,000. Compound = $16,470. Difference $1,470 illustrates compounding power.
Adjust compounding frequency. Annual (n=1): $16,289. Quarterly (n=4): $16,436. Monthly (n=12): $16,470. Daily (n=365): $16,486. Continuous: $16,487.
Important insight. Higher frequency = slightly more growth. But difference between monthly and daily is small. Don't get fixated on frequency — focus on rate and time.
Modify for any scenario. Change rate, principal, time, frequency. Watch result update. Excel allows quick exploration.
Tip. Use absolute references when copying formula. =$B$1*(1+$B$2/$B$3)^($B$3*B4) if you have multiple time periods.

Manual Formula
Cells for P, r, n, t. Easy to modify.
=B1*(1+B2/B3)^(B3*B4). Standard math.
Change values, watch results update instantly.
Annual to daily — see compounding impact.
P*(1+r*t) shows compounding advantage.
$B$1, $B$2 for copying across periods.
Method 2: FV (Future Value) function. Excel's built-in financial function.
Syntax. =FV(rate, nper, pmt, [pv], [type]). rate = periodic rate. nper = total periods. pmt = periodic payment. pv = present value. type = 0 (end) or 1 (beginning).
Basic compound interest. No periodic payments. =FV(rate/n, n*t, 0, -P). Negative P (negative cash flow out). Returns positive future value.
Example: $10,000 at 5% monthly for 10 years. =FV(0.05/12, 12*10, 0, -10000) = $16,470.09. Same answer as manual formula.
With monthly deposits. =FV(rate/12, 12*years, -monthly_deposit, -starting_balance). Compound interest plus regular contributions.
Example: $10,000 starting + $500/month for 10 years at 5%. =FV(0.05/12, 120, -500, -10000) = $94,170. Massive growth from regular contributions.
Retirement projection. =FV(0.07/12, 30*12, -500, 0). $500/month for 30 years at 7%. = $610,022. Strong retirement projection.
Why FV function. Built-in. Handles annuities (regular payments). Easier than manual formula for complex scenarios.
FV in compound interest context. Future Value = compound interest result. Same math, cleaner syntax.
Sign convention reminder. FV returns positive for what you'll have. Negative pv and pmt for cash outflows from you. Excel financial functions use this convention.
Adjusting frequency. =FV(0.05/4, 4*10, 0, -10000) for quarterly. =FV(0.05/365, 365*10, 0, -10000) for daily. Match rate and periods to frequency.
FV Function
No periodic payments. =FV(rate/n, n*t, 0, -P). Pure compound growth on initial deposit. Returns future value after compounding.
Method 3: Year-by-year amortization table. Visualize growth.
Why use a table. Shows growth period by period. Visualize compounding effect. Better understanding than single number. Useful for charts.
Setup. Headers: Year, Starting Balance, Interest Earned, Ending Balance. Row 1: Year 0, starting balance.
Year 1 row. Year: 1. Starting balance: =previous ending. Interest earned: =starting * rate. Ending: =starting + interest.
Copy down. Drag formulas for 10, 20, 30 years. Each year compounds on previous balance.
Example: $10,000 at 5% for 10 years annual compounding. Year 1: 10,000 → 500 interest → 10,500. Year 2: 10,500 → 525 → 11,025. Year 3: 11,025 → 551.25 → 11,576.25. By Year 10: 16,289.
Visualize with chart. Select range. Insert → Line Chart. Shows exponential growth curve. Makes compounding visual and intuitive.
Add monthly deposits. Add 'Annual Contribution' column. New formula: ending = starting + interest + contribution. Shows combined compound growth.
Advantages of table approach. Visual learning. Customize for variable rates. Easy to show specific years. Use for presentations.
Disadvantages. More cells to manage. Harder to test alternatives. Manual formula or FV faster for single numbers.
When to use table. Education, presentation, complex scenarios with varying rates. Most powerful for learning.
Compound interest curve. Slow start. Accelerating growth. After many years, dramatic difference from linear. Power of compounding.
Amortization Table
Year, Starting, Interest, Ending. Track each period.
Interest = start * rate. End = start + interest.
Each year compounds on previous balance.
Annual Contribution column. Combined growth.
Insert chart for exponential growth curve.
Variable rates, varying contributions per year.

Common scenarios and Excel solutions.
Retirement planning. $500/month from age 25 to 65 at 7%. =FV(0.07/12, 40*12, -500, 0) = $1.3M+. Massive accumulation from consistent contributions.
Savings goal — house down payment. Want $50,000 in 5 years at 4% savings. =PMT(0.04/12, 60, 0, -50000) = $750/month needed.
College fund — 18 years. $200/month at 6%. =FV(0.06/12, 18*12, -200, 0) = $77,000. Plus initial deposit grows: =FV(0.06/12, 18*12, -200, -10000) = $109,000.
Compound interest comparison. $10,000 at 5% vs 7% over 30 years. 5%: =FV(0.05/12, 30*12, 0, -10000) = $44,677. 7%: =FV(0.07/12, 30*12, 0, -10000) = $81,007. 2% difference = $36,000+ more.
Doubling time. Rule of 72: 72 / interest rate = years to double. 6%: 12 years. 7%: ~10 years. Quick mental math.
Tax-advantaged accounts. 401(k), IRA, Roth IRA. Tax-free growth significantly enhances compounding. =FV(0.07/12, 30*12, -500, 0) untaxed = $610K. Same after-tax in regular account ~$430K.
Inflation adjustment. Real return = nominal - inflation. 7% nominal at 3% inflation = 4% real. Use real rate to project purchasing power.
Variable interest rates. Reality: rates change. Use year-by-year table with different rates per period.
Investment fees impact. 7% return - 1% fee = 6% net. =FV(0.06/12, 30*12, -500, 0) = $497K. Fees compound just like interest. Watch them.
Withdrawal scenarios. Use FV variants. Calculate how long money lasts in retirement.
Compound Interest Examples
Advanced compound interest techniques.
Continuous compounding. Theoretical maximum. =P*EXP(r*t). EXP is e^x. Most banks don't use; useful for academic comparison.
Example: $10,000 at 5% for 10 years continuous. =10000*EXP(0.05*10) = $16,487.21. Slightly more than daily compounding.
Variable rates over time. Year-by-year table with different rates per year. Each row uses that year's rate.
Different compounding periods. Mortgage often monthly. Bonds often semi-annual. Match calculation to actual compounding.
Adjusting for taxes. Tax-deferred (401k, IRA, Roth): full compound. Taxable: tax drag reduces effective rate. Approximate: =FV(after_tax_rate/12, 12*years, -monthly, -principal).
Adjusting for inflation. Subtract inflation from rate. =FV((0.07-0.03)/12, 12*years, -monthly, -principal). Shows real purchasing power.
Combining present value. =PV(0.05/12, 12*10, 0, -16000) = $9,711. What you'd need today to reach $16,000 in 10 years at 5% (vs $10,000 actually invested).
Sensitivity analysis. Build table: rate column 4-8%, time row 5-30 years. Each cell shows final value. Visualize impact.
Visualizing growth. Line chart of yearly balance. Shows exponential curve. Or stacked bar chart of principal vs interest.
Combining with other functions. =IF(year<=retirement_age, FV(...), withdrawal_calc). Decision logic in compound interest.
Excel solver. Optimize across multiple variables. Goal: reach specific FV. Adjust monthly contribution to achieve goal.
Goal Seek. What rate needed to reach $1M? Data → What-If → Goal Seek. Set FV cell to $1M, change rate cell. Excel solves.
1. Start early. Time is the biggest factor. $100/month from age 25 beats $500/month from age 45.
2. Consistency beats timing. Regular contributions matter more than market timing.
3. Rate differences compound. 7% vs 5% over 30 years = nearly double.
4. Fees compound too. 1% fee reduces final value by 20%+ over 30 years.
5. Tax-advantaged accounts matter. Roth IRA, 401(k), tax-deferred dramatically improve outcomes.
6. Inflation reduces real returns. 7% nominal at 3% inflation = 4% real.
7. Doubling time predictable. 72 / rate = years to double. Quick mental math.
8. Frequency matters but not much. Monthly vs daily small difference. Focus on rate and time.
9. Use sensitivity analysis. Test different scenarios. See impact of assumptions.
10. Visualize. Charts make compound growth tangible. Helps motivation to save.
Common compound interest mistakes.
Mistake 1: Mixing rate and frequency. Annual rate divided by 12 for monthly. Forget to divide = wildly wrong answer.
Mistake 2: Wrong number of periods. Months vs years. 12*10 not 10. Annual rate * months not years.
Mistake 3: Sign confusion in FV. Negative pv/pmt for cash out. Positive for cash in. Confusion causes wrong sign.
Mistake 4: Forgetting fees. Pre-fee return looks great. After-fee return matters. Subtract fees from rate.
Mistake 5: Forgetting taxes. Pre-tax return overstates real growth. Tax drag significant in taxable accounts.
Mistake 6: Forgetting inflation. $1M in 30 years has much less purchasing power than $1M today. Subtract inflation for real returns.
Mistake 7: Assuming constant rates. Reality: rates vary. Use range of outcomes for planning.
Mistake 8: Ignoring monthly contributions. Just principal growth understates potential. Include regular savings.
Mistake 9: Comparing apples to oranges. Different compounding frequencies, time periods, fees. Standardize before comparing.
Mistake 10: Confusing simple and compound interest. Simple = linear growth. Compound = exponential. Use compound for long-term projections.
Mistake 11: Wrong PV/FV sign convention. Memorize: outflow from you = negative. Inflow to you = positive.
Mistake 12: Not testing assumptions. Always run multiple scenarios. See sensitivity to rate, time, contribution changes.
Common Mistakes
Annual rate without dividing by 12 for monthly = wrong.
12*years for monthly. Not years alone.
Negative pv/pmt for cash out. Excel financial conventions.
1% fee reduces final value 20%+ over 30 years.
Real return = nominal - inflation. Adjust for purchasing power.
Don't confuse. Compound for long-term projections.

Common questions about compound interest in Excel.
How do I calculate compound interest in Excel? Two main methods: manual formula =P*(1+r/n)^(n*t) or FV function =FV(rate/n, n*t, 0, -P). Both produce same answer.
What's the difference between simple and compound interest? Simple interest: only on principal. =P*(1+r*t). Compound interest: on principal plus accumulated interest. Grows exponentially.
How do I include monthly contributions? Use FV with pmt argument: =FV(rate/12, 12*years, -monthly_amount, -starting_balance). pmt is the regular contribution.
What's continuous compounding? Theoretical maximum. =P*EXP(r*t). Banks don't use it; useful for academic comparison.
How long until my money doubles? Rule of 72: 72 / interest rate = years to double. 6%: 12 years. 7%: ~10 years.
Should I prefer monthly or daily compounding? Monthly vs daily small difference (under 0.05%). Focus on getting higher rate rather than higher frequency.
How does inflation affect compound interest? Reduces real returns. 7% nominal at 3% inflation = 4% real return. Subtract inflation for purchasing power projections.
Can I use compound interest formula for loans? Yes — backwards. Loan compounds against you. =PMT(rate/12, 12*years, -principal) gives monthly payment.
What rate should I assume for projections? Stock market long-term: 7-10% nominal. Bonds: 4-6%. CDs/savings: 2-4%. Inflation: 2-3%. Adjust based on portfolio mix.
How do I use Goal Seek with compound interest? Set up formula. Data → What-If → Goal Seek. Set cell value (target FV), change cell (rate or contribution). Excel solves backward.
Compound Pros and Cons
- +Compound has a publicly available content blueprint — you know exactly what to prepare for
- +Multiple preparation pathways accommodate different schedules and budgets
- +Clear score reporting shows specific strengths and weaknesses
- +Study communities share current insights from recent test-takers
- +Retake policies allow recovery from a difficult first attempt
- −Tested content scope requires substantial preparation time
- −No single resource covers everything optimally
- −Exam-day performance can differ from practice test performance
- −Registration, prep, and retake costs accumulate significantly
- −Content changes between versions can make older materials less reliable
Tax-Advantaged Accounts
Tax-deferred. Up to $23,000/year (2024). Employer match common. Best compounding option for high earners. Tax-deferred = full compound growth until withdrawal.
Building a comprehensive financial planning workbook in Excel.
Start with current state. Cells for current savings, current age, target retirement age. These drive your timeframe.
Add income parameters. Current monthly contribution. Expected contribution increases. Some growth in contribution rate over career.
Set rate of return assumptions. Conservative (4-5%), moderate (6-7%), aggressive (8-10%). Test multiple scenarios.
Compute future value. =FV(rate/12, years*12, -monthly, -current). Returns projected retirement balance.
Inflation adjustment. Real return = nominal - inflation. =FV((rate-inflation)/12, years*12, -monthly, -current). Returns purchasing power equivalent.
Sensitivity table. Vary rate (4% to 10%) by retirement age (60 to 70). Each cell shows projected balance. Helps see impact of decisions.
Monthly contribution required. Goal seek backward: =PMT(rate/12, years*12, -current, target). What monthly amount needed to reach goal.
Tax-deferred vs taxable. Tax-deferred (401k, IRA): grows untaxed until withdrawal. Calculate after-tax retirement. Approximate post-tax = balance × (1 - tax_rate). Taxable accounts: tax drag reduces effective rate by 1-2% typically.
Roth vs Traditional. Roth: pay taxes now, tax-free withdrawal. Traditional: tax-deferred, taxed at withdrawal. Run both scenarios. Roth wins for many in higher future tax brackets.
Withdrawal phase. After retirement: =PMT(rate/12, withdrawal_years*12, balance, 0). How much can withdraw monthly for fixed period. Rule of 4%: =balance * 0.04 / 12 monthly.
Visualize. Multiple charts: balance over time, contribution vs growth, comparison of scenarios. Engagement increases when projections are visual.
Add monte carlo simulation. Advanced: build distribution of outcomes based on variable returns. Realistic uncertainty quantification. Excel Solver and array formulas enable this.
Update annually. Each year, revisit assumptions. Adjust based on actual returns vs projected. Plan for changes in income, family, goals. Living document.
Use for major decisions. Buying a house — calculate impact on retirement. Career change — model income impact. Education investment — calculate ROI through retirement.
Share with advisor. Bring Excel projections to financial advisor meetings. Concrete numbers improve discussions. Catch errors in assumptions.
Excel Questions and Answers
Final thoughts. The compound interest formula in Excel is one of the most valuable financial calculations you can master. Whether you're projecting retirement, planning savings goals, or analyzing investments, Excel's FV function and manual compound interest formulas handle the math elegantly.
Start with the basics. Manual formula =P*(1+r/n)^(n*t) for simple compound calculations. FV function for cleaner syntax when including monthly contributions. Both work — pick what feels natural.
Build for visualization. Year-by-year amortization tables make compound growth tangible. Charts show the exponential curve. Helpful for understanding and presentations.
Apply to real planning. Project your own retirement. Calculate college fund needs. Plan for major purchases. The formulas turn financial planning from guesswork into concrete numbers.
Master the sensitivity. Higher rate = significantly more growth. Longer time = exponential growth. Regular contributions accelerate accumulation. Each variable's impact is significant over decades.
Account for reality. Fees reduce effective rate. Taxes reduce after-tax returns. Inflation reduces purchasing power. Adjust calculations for these realities.
Build templates. Save compound interest calculators in Excel. Reuse for different scenarios. Continuous learning about your financial future.
Compound interest is one of the most powerful financial concepts. Excel makes it accessible. Take time to learn the formulas. Apply them to your own life. The investment of an hour learning Excel compound interest can shape your financial decisions for decades. Worth every minute of practice.
About the Author
Attorney & Bar Exam Preparation Specialist
Yale Law SchoolJames R. Hargrove is a practicing attorney and legal educator with a Juris Doctor from Yale Law School and an LLM in Constitutional Law. With over a decade of experience coaching bar exam candidates across multiple jurisdictions, he specializes in MBE strategy, state-specific essay preparation, and multistate performance test techniques.