How to Calculate Interest Earned on Savings Account in Excel
Calculating interest earned on a savings account is essential for understanding your financial growth. This guide explains how to calculate it manually and in Excel, with practical examples and formulas.
How to Calculate Interest Earned
The interest earned on a savings account depends on three key factors:
- Principal amount - The initial deposit
- Interest rate - The annual percentage yield (APY)
- Time period - The duration the money is invested
Simple Interest Calculation
For simple interest accounts, the formula is:
Interest = Principal × Rate × Time
Where:
- Principal = Initial deposit amount
- Rate = Annual interest rate (as a decimal)
- Time = Time in years
Compound Interest Calculation
For compound interest accounts, the formula is:
Amount = Principal × (1 + Rate/Compounding Periods)^(Compounding Periods × Time)
Interest = Amount - Principal
Where:
- Compounding Periods = Number of times interest is compounded per year (e.g., 4 for quarterly)
Calculating in Excel
Excel makes it easy to calculate interest earned with built-in functions:
Simple Interest in Excel
Use the formula:
=Principal × Rate × Time
Compound Interest in Excel
Use the FV function for future value:
=FV(Rate/Compounding Periods, Compounding Periods × Time, -Principal)
Then calculate interest as:
=FV - Principal
Step-by-Step Excel Instructions
- Enter your principal amount in cell A1
- Enter your annual interest rate (as a decimal) in cell B1
- Enter the time in years in cell C1
- For simple interest, enter =A1×B1×C1 in cell D1
- For compound interest, enter =FV(B1/12,12×C1,-A1) in cell E1
- Calculate interest earned as =E1-A1 in cell F1
Formula Explanation
The key formulas for calculating interest earned are:
Simple Interest Formula
Interest = P × r × t
Where:
- P = Principal amount
- r = Annual interest rate (as a decimal)
- t = Time in years
Compound Interest Formula
A = P × (1 + r/n)^(n×t)
Interest = A - P
Where:
- A = Amount of money accumulated after n years, including interest
- n = Number of times interest is compounded per year
For example, if you deposit $1,000 at 5% annual interest compounded monthly for 2 years:
A = 1000 × (1 + 0.05/12)^(12×2) = $1,104.08
Interest = $1,104.08 - $1,000 = $104.08
Worked Example
Let's calculate the interest earned on a $5,000 savings account with a 3% annual interest rate over 5 years, compounded quarterly.
Step 1: Identify Variables
- Principal (P) = $5,000
- Annual interest rate (r) = 3% or 0.03
- Time (t) = 5 years
- Compounding periods per year (n) = 4 (quarterly)
Step 2: Apply the Compound Interest Formula
A = 5000 × (1 + 0.03/4)^(4×5)
A = 5000 × (1 + 0.0075)^20
A = 5000 × 1.1605
A ≈ $5,802.50
Step 3: Calculate Interest Earned
Interest = A - P = $5,802.50 - $5,000 = $802.50
Excel Implementation
In Excel, you would enter:
=FV(0.03/4,4×5,-5000) → Returns $5,802.50
=FV - 5000 → Returns $802.50
FAQ
What's the difference between simple and compound interest?
Simple interest is calculated only on the original principal amount. Compound interest is calculated on the initial principal and also on the accumulated interest of previous periods.
How often should interest be compounded?
More frequent compounding periods generally result in higher returns. Common compounding frequencies are annually, semi-annually, quarterly, and monthly.
How do I calculate interest earned on a savings account with monthly deposits?
For accounts with regular deposits, use the FV function with the payment parameter. The formula becomes: FV(rate, nper, pmt, pv, type).
What if my savings account has a variable interest rate?
For variable rates, you'll need to calculate each period separately using the appropriate rate for that period.
How can I track my savings account interest in Excel?
Create a spreadsheet with columns for date, deposit amount, interest rate, and days in period. Use the formula =PMT(rate, nper, pv) to calculate periodic interest.