Excel-9 is a comprehensive collection and guide to financial functions in Microsoft Excel. This repository provides clear explanations, practical examples, and screenshots for each formula. Its goal is to make Excel finance easy and fun! ๐๐ก
๐ Purpose: Master essential Excel financial formulas for personal finance, business analysis, and academic use. ๐
- ๐ Overview
- ๐ฐ Key Financial Functions
- ๐งโ๐ผ Advanced Scenarios
- ๐๏ธ Depreciation Formulas
- ๐ Profit Margins
- ๐ผ๏ธ Screenshots
- ๐ Further Reading & Official Links
- ๐ Requirements
- ๐ค Author
Microsoft Excel includes a suite of financial functions designed to solve common problems related to loans, savings, investments, and asset depreciation. This repository explains how to use each function step by step. ๐งฎ
Typical use cases:
- ๐ Calculate loan payments and schedules (mortgages, car loans, etc.)
- ๐ Determine present or future value of investments
- ๐ผ Analyze cash flows for business decisions
- ๐งพ Calculate depreciation for accounting
- ๐น Compute profit margins
Calculates the periodic payment for a loan or investment based on constant payments and a constant interest rate.
Syntax:
=PMT(rate, nper, pv, [fv], [type])
rateโ Interest rate per period (annual rate/number of periods per year).nperโ Total number of payment periods.pvโ Present value (principal).fvโ [optional] Future value (remaining balance after last payment, usually 0).typeโ [optional] 0 (end of period), 1 (beginning of period).
Example:
Monthly payment for a $185,000 loan, 7% annual interest, 15 years:
=PMT(7%/12, 15*12, -185000)
Returns the interest rate per period for an investment or loan.
Syntax:
=RATE(nper, pmt, pv, [fv], [type], [guess])
Example:
Find the interest rate for a loan with known payment, periods, and present value.
Returns the number of payment periods for an investment or loan.
Syntax:
=NPER(rate, pmt, pv, [fv], [type])
Example:
Find the number of periods.
Returns the present value of an investment or loan.
Syntax:
=PV(rate, nper, pmt, [fv], [type])
Example:
Here its the ammount we borrowed.
Calculates the future value of an investment based on periodic, constant payments and a constant interest rate.
Syntax:
=FV(rate, nper, pmt, [pv], [type])
Example:
Future value of monthly investments.
Returns the payment on the principal for a given period.
Syntax:
=PPMT(rate, per, nper, pv, [fv], [type])
perโ Specific period for the calculation.
Example:
Principal paid in the 5th year of a loan.
Returns the interest payment for a specific period.
Syntax:
=IPMT(rate, per, nper, pv, [fv], [type])
Example:
Interest paid in the 5th year of a loan.
โน๏ธ Note: the principal part and the interest part always add up to the payment amount.
Calculate the result of compounding interest over multiple periods.
Formula:
=Principal * (1 + rate/nper)^(nper*years)
Example:
Future value of $10,000 invested at 8% compounded annually for 5 years.
More: Compound Interest in Excel
Returns the equivalent interest rate for the growth of an investment.
Syntax:
=RRI(nper, pv, fv)
nperโ Number of periodspvโ Present value (negative)fvโ Future value
๐ CAGR (Compound Annual Growth Rate):
The CAGR measures the growth of an investment as if it had grown at a steady rate on an annually compounded basis.
Example:
Annual rate needed for $10,000 to grow to $14,693.28 in 5 years.
Calculates the net present value of an investment based on a discount rate and future cash flows.
Syntax:
=NPV(rate, value1, [value2], ...)
Note: Subtract initial investment separately.
Example:
Discount rate 12%, Cash flows: Period 0: -100, Period 1: 0, Period 2: 50, Period 3: 150.
Calculates the internal rate of return for a series of cash flows.
Syntax:
=IRR(values, [guess])
โน๏ธ Note: The IRR rule states that if the IRR is greater than the required rate of return, you should accept the project. IRR values are frequently used to compare investments.
Excel supports several depreciation methods for fixed assets:
-
SLN (Straight Line): Equal amount each year
=SLN(cost, salvage, life)

Docs: SLN ๐ -
SYD (Sum-of-Years' Digits): Accelerated depreciation
=SYD(cost, salvage, life, period)

Docs: SYD โฉ -
DB (Fixed Declining Balance):
=DB(cost, salvage, life, period, [month])

Docs: DB ๐ -
DDB (Double Declining Balance):
=DDB(cost, salvage, life, period, [factor])

Docs: DDB 2๏ธโฃ -
VDB (Variable Declining Balance):
=VDB(cost, salvage, life, start_period, end_period, [factor], [no_switch])

Docs: VDB ๐
Analyze your business's profitability using these formulas:
- Gross Profit: Revenue โ Cost of Goods Sold
๐งพ - Gross Profit Margin: (Gross Profit / Revenue)
๐ - Operating Profit: Gross Profit โ Operating Expenses
๐ญ - Operating Margin: (Operating Profit / Revenue)
๐งฎ - Net Profit: Operating Profit โ Taxes โ Interest โ Other Expenses
๐ต - Net Margin: (Net Profit / Revenue)
๐
Visual step-by-step examples for each formula are provided in the /Screenshots folder. ๐ผ๏ธ
- Microsoft Excel Financial Functions โ Full Reference ๐
- Microsoft Excel Functions by Category ๐๏ธ
- Excel Video Tutorials by Microsoft ๐ฅ
- ๐ป Microsoft Excel (2013 or later recommended for full function support)
- ๐ง Basic understanding of finance/math is helpful
Repository and documentation by Kuba27x
Excel-9 on GitHub ๐










