| cumipmt | Cumulative interest paid. Example: cumipmt(rate, periods, value, start, end, type) |
| finance.AM | Amortization Example: finance.AM(principal, rate, period, yearOrMonth, payAtBeginning) |
| finance.CAGR | Compound annual growth rate Example: finance.CAGR(beginning value, ending value, number of periods) |
| finance.CI | Compound interest Example: finance.CI(rate, compoundings per period, principal, number of periods) |
| finance.DF | Discount factor (returns an array; must index array to obtain values -- to see all values of array, see working example above). Example: finance.DF(rate, number of periods)[index] |
| finance.FV | Future value Example: finance.FV(rate, nper, pmt, pv, type) |
| finance.IAR | Inflation-adjusted return Example: finance.IAR(investment return, inflation rate) |
| finance.irr | Internal rate of return. Example: finance.IRR(Cashflows[all], [guess]) For a more detailed example, see Examples for Functions. |
| finance.LR | Leverage ratio Example: finance.LR(total liabilities, total debts, total income) |
| finance.NPV | Net present value Example: finance.NPV(rate, initial investment, cash flows[all]) For a more detailed example, see Examples for Functions. |
| finance.PI | Profitability index Example: finance.PI(rate, initial investment, cash flows[all]) |
| finance.PMT | Payment for a loan based on constant payments and a constant interest rate Example: finance.PMT(fractional interest rate, number of payments, principal) |
| finance.PP | Payback period Example: finance.PP(number of periods, cash flows[all]) |
| finance.PV | Present value Example: finance.PV(rate, nper, pmt, [fv], [type]) |
| finance.R72 | Rule of 72 Example: finance.R72(rate) |
| finance.roi | Return on investment Example: finance.ROI(Cashflows[all]) |
| finance.WACC | Weighted average cost of capital Example: finance.WACC(market value of equity, market value of debt, cost of equity, cost of debt, tax rate) |
| finance.xirr | Internal rate of return for a schedule of cash flows Example: finance.xirr([-10,11], [0,12], 12) = 10% For a more detailed example, see Examples for Functions. |
| fv | Future value Example: v(rate, nper, pmt, pv, [type]) |
| fvifa | Future value interest factor of an annuity Example: fvifa(rate, nper) |
| ipmt | Interest portion of a given loan payment Example: ipmt(rate, per, nper, pv, [fv], [type]) |
| pmt | Periodic payment for a loan Example: pmt(rate, nper, pv, [fv], [type]) |
| ppmt | Principal portion of a given loan payment Example: ppmt(rate, per, nper, pv, [fv], [type]) |
| pv | Present value Example: pv(rate, nper, pmt, fv, [type]) |
| pvif | Present value interest factor Example: pvif(rate, nper) |
| rate | Interest rate per period of an annuity Example: rate(nper, pmt, pv, [fv], [type], [guess]) |