Compound Interest Formula in Excel: FV, Growth, and SIP Examples
Compound interest formula Excel guide: grow savings faster with =FV(rate, nper, pmt), the power-operator method, SIP math, and yearly compounding examples.
The compound interest formula in Excel is how analysts price the future: what a deposit becomes, what a SIP accumulates to, what a delayed payment really costs. Simple interest grows linearly; compounding grows on its own growth, and the gap between the two over a decade is the difference between a plan that works and one that quietly fails. This guide assumes the PMT loan mechanics feel familiar — FV is the same time-value family, pointed forward instead of at a payment.
On the Data Analyst Roadmap, compounding is the finance-modelling core: once FV is fluent, CAGR becomes a one-line inversion of the same idea. These models form the core computational framework used in data science in finance.
₹1 lakh at 8% for 10 years becomes ₹2.16 lakh — compounding, not saving, does most of the work
=100000*(1+8%)^10 returns about ₹2,15,892. Simple interest would give only ₹1,80,000 — the ₹35,892 gap is interest earning interest, and it widens every year.
Compound Interest Formula Excel: Syntax and How It Works
Two forms cover nearly every case. For repeated deposits, per Microsoft Support: FV:
=FV(rate, nper, pmt, [pv], [type])| Argument | Required | What it does |
|---|---|---|
rate | Yes | Interest rate per compounding period (monthly SIP at 12% = 12%/12) |
nper | Yes | Total number of periods (10*12 = 120 for 10 years monthly) |
pmt | Yes | Payment each period; negative for money you invest (-5000) |
[pv] | No | Starting lump sum today; 0 if starting from scratch (default) |
[type] | No | 0 = deposit at period end (default); 1 = deposit at period start |
For a one-time deposit, the power-operator form is clearer:
=100000*(1+8%)^10Principal times one-plus-rate, raised to the number of periods. The ^ is the entire compounding engine: period 1's interest becomes part of the base that period 2 multiplies. Both forms demand the same discipline carried over from PMT — rate and nper must share a period, and signs follow the cash-flow convention (outflows negative).
Step-by-Step Example: SIP vs Lump Sum at 12%
An analyst comparing "invest ₹5,000 monthly" against "invest ₹6,00,000 once" over 10 years at 12%:
Step 1 — value the SIP with FV in B1:
=FV(12%/12, 10*12, -5000)Result: about ₹11,61,695 on ₹6,00,000 invested. The monthly rate 12%/12 with 120 periods models monthly compounding exactly as most SIP illustrations do.
Step 2 — value the lump sum in B2:
=600000*(1+12%)^10Result: about ₹18,63,508. Same rate, same horizon, dramatically more wealth — because the full ₹6 lakh compounds from day one while SIP money trickles in. This is the honest comparison clients need, and it takes two cells.
Step 3 — isolate the compounding effect with a side-by-side against simple interest:
=600000*(1+12%*10)Simple interest gives ₹13,20,000. So of the lump sum's ₹18.6 lakh, ₹12.6 lakh is growth and ₹5.4 lakh of that growth is interest-on-interest. Showing all three numbers — principal, simple-interest total, compounded total — makes the compounding premium tangible in reviews.
Step 4 — handle quarterly compounding products (many FDs and bonds). If the product compounds quarterly at 8% nominal:
=100000*(1+8%/4)^(5*4)Rate divided by 4, periods multiplied by 4 — the same convert-both-together rule as PMT. Using the annual rate with quarterly periods overstates the outcome; using the quarterly rate with annual periods understates it. Match the product's actual frequency, stated in its terms.
How do you model a step-up SIP with the compound interest formula in Excel?
Real SIPs grow: a ₹5,000 monthly investment stepping up 10% yearly beats a flat SIP substantially, and FV alone cannot express the growth. Build it as a year-by-year ladder instead. List years 1–10 in column A, annual invested (monthly × 12, grown 10% yearly) in column B, then compound each year's contribution for its remaining horizon in column C:
=B2*(1+12%)^(10-A2)Year 1's ₹60,000 compounds for 9 remaining years, year 10's ₹1,41,159 compounds for 0 — sum column C for the total (about ₹13.4 lakh invested growing to roughly ₹15.2 lakh at 12%, versus ₹11.6 lakh for the flat SIP on similar outflow). The ladder generalises to any varying schedule: bonuses, pauses, partial withdrawals as negative contributions. Each row is independently checkable — the query ran, and any reviewer can verify a single year's compounding without trusting the whole edifice. For fully irregular dated flows, graduate from this ladder to XIRR, which discounts actual dates instead of annual buckets.
Common Mistakes and Fixes
Frequency mismatch: annual rate, monthly money
=FV(12%, 120, -5000) charges 12% per month — the SIP "grows" to an astronomical fiction. Every FV audit starts here: does the rate's period match nper's period? Write the conversion explicitly (12%/12, 10*12) so the frequency is visible in the formula rather than buried in a typed decimal like 0.01.
The second mistake is the sign flip: positive pmt for invested money returns a negative future value, which then poisons downstream sums. Invested cash is an outflow — negative pmt, negative pv — and FV returns the positive pile at the end. If your FV is negative, the math is right and the signs are backwards.
Start-of-period deposits need type 1
Salary-day SIPs invested on the 1st compound one period sooner than end-of-month deposits. =FV(12%/12, 120, -5000, 0, 1) captures the extra month of growth on every instalment — roughly one month's return over the horizon, small but real, and exactly the kind of precision that separates a model from a guess.
Compound Interest Formula Excel vs Simple Growth Shortcuts
| Feature / Criteria |
|---|
Use FV whenever money enters over time; use the power operator for lump sums and sanity checks you can read at a glance. Keep a simple-interest column beside both when presenting — the gap column is the compounding story, and stakeholders grasp "₹5.4 lakh of your ₹12.6 lakh gain is interest-on-interest" faster than any rate discussion. To run the logic backwards (what rate turns X into Y?), continue to CAGR.
When to Use the Compound Interest Formula Excel in Analyst Work
Investment and SIP illustrations. Client-facing growth charts, goal-planning sheets ("₹20,000/month at 12% reaches ₹1 crore in ~11 years"), and product comparisons all rest on FV. Build them with assumption cells for rate and tenure so the adviser can answer "what if 10%?" live in the meeting.
Cost-of-delay analysis. Every delayed receivable or postponed investment has a compounding cost: =amount*(1+rate)^years prices procrastination precisely. Finance teams use this to prioritise collections — a ₹10 lakh receipt delayed a year at 12% costs ₹1.2 lakh in foregone growth, a number that moves queues.
Loan-versus-invest tradeoffs. Pair FV (what surplus earns) with PMT (what the loan costs): prepay the 9% loan or invest at an expected 12%? Two cells, one subtraction, and the eternal debate becomes arithmetic — with the risk caveat stated alongside, because the query ran, but the assumptions still need challenging.
Related Excel Tutorials
- Excel Formulas: The Complete Guide
- XLOOKUP Formula in Excel
- SUM Formula in Excel
- Excel Pivot Tables Guide
- Explore All Guides in the Excel Tutorials Hub
Master Excel for Data Analysis
Learn Excel formulas, pivot tables, and dashboards with free, project-based courses.
Start Free Excel CourseFrequently Asked Questions
What is the compound interest formula in Excel?
The compound interest formula in Excel has two forms: =FV(rate, nper, pmt, [pv]) for regular investments like SIPs, and =principal*(1+rate)^periods for a one-time deposit. Both encode the same compounding math: each period's growth earns growth in later periods.
How do I calculate compound interest on a lump sum in Excel?
Use =100000*(1+8%)^10 for ₹1,00,000 at 8% for 10 years, which returns about ₹2,15,892. The ^ operator compounds the principal; the gain over simple interest is the compounding effect.
How do I calculate SIP future value with the compound interest formula in Excel?
Use =FV(12%/12, 10*12, -5000), which treats ₹5,000 monthly for 10 years at 12% as 120 monthly deposits compounding monthly. The negative pmt follows Excel's cash-flow sign convention.
Why is my compound interest formula in Excel wrong by a small amount?
Usually a frequency mismatch: annual rate with monthly deposits, or nominal rate where the product compounds quarterly. Match rate and nper to the actual compounding frequency, and confirm whether deposits happen at period start (type 1) or end (type 0).
How does compound interest in Excel relate to CAGR?
They are inverse operations: compounding projects forward from rate to value (FV), while CAGR works backward from start and end values to the rate. Our CAGR guide covers the reverse direction with the same time-value logic.

Written by
Founder at Topfolio with 6+ years in data & analytics across JPMC, Ultrahuman, and high-growth startups. Sat on hiring panels, reviewed 500+ resumes, and writes practical SQL & data guides.
Related Articles
Basic Excel Formulas: The Top 10 Formulas Every Analyst Needs to Know
Learn essential basic excel formulas: master SUM, AVERAGE, COUNT, IF, VLOOKUP, and conditional functions with syntax, examples, and practical fixes.
CAGR Formula in Excel: Growth Rate with RRI and Power Method
CAGR formula Excel guide: compute annualised growth with =(End/Start)^(1/n)-1 and =RRI(). Investor examples, negative bases, and CAGR vs XIRR explained.
Excel Formula List: The Top 30 Functions Every Analyst Uses (with Examples)
The complete excel formula list for data analysts: 30 essential functions across Lookups, Math, Logical, Text, and Date categories with syntax and examples.