Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting Color Scales Examples in Excel
  • Get column name from index in Excel Table
  • Reverse List in Excel
  • Example of COUNTIFS with variable table column in Excel
  • How to calculate current stock or inventory in Excel

References

  • How to use Excel FORMULATEXT function
  • Approximate match with multiple criteria in Excel
  • How to retrieve first match between two ranges in Excel
  • How to get address of first cell in range in Excel
  • How to use Excel MATCH Function

Data Validations

  • Excel Data validation exists in list
  • Excel Data validation whole percentage only
  • How To Create Drop-down List in Excel
  • Excel Data validation date in next 30 days
  • Excel Data validation must not contain

Category: Financial Functions

Excel Financial Functions perform many of the common financial calculations, such as the calculation of yield, interest rates, duration, valuation and depreciation.

Future value vs. Present value examples in Excel

by

This tutorial shows how present value and future value are related using the example below:   Explanation In the example shown, Years, Compounding periods, and Interest rate are linked in columns C and F like this: F5=C9 F6=C6 F7=C7 F8=C8 The formula to calculate future value in C9 is: =FV(C8/C7,C6*C7,0,-C5,0) The formula to calculate present value in F9 …

Continue Reading

Example of Future value of annuity in Excel

by

To get the present value of an annuity, you can use the PV function. Formula =FV(rate,periods,payment) Explanation In the example shown, the formula in C7 is: =FV(C5,C6,-C4,0,0) Explanation An annuity is a series of equal cash flows, spaced equally in time.  In this example, a $5000 payment is made each year for 25 years, with …

Continue Reading

How to calculate simple interest in Excel

by

To calculate simple interest in Excel (i.e. interest that is not compounded), you can use a formula that multiples principal, rate, and term. Case Study: This example assumes that $1000 is invested for 10 years at an annual interest rate of 5%. Simple interest means that interest payments are not compounded – the interest is …

Continue Reading

How to calculate principal for given period in Excel

by

To calculate the principal portion of a loan payment in a given period, you can use the PPMT function. Formula =PPMT(rate,period,periods,-loan) Explanation In the example shown, the formula in C10 is: =PPMT(C6/12,1,C8,-C5) How this formula works For this example, we want to calculate the principal portion for payment 1 of a 5-year loan of $5,000 …

Continue Reading

Calculate periods for annuity in Excel

by

To calculate the number of periods needed for an annuity to reach a given future value, you can use the NPER function. Formula =NPER(rate,pmt,pv,fv,type) Explanation In the example shown C9 contains this formula: =NPER(C6,-C7,-C4,C5,0) Explanation An annuity is a series of equal cash flows, spaced equally in time. The goal in this example is to …

Continue Reading

Calculate payment periods for loan in Excel

by

To calculate the number of payment periods for a loan, given the loan amount, the interest rate, and a periodic payment amount, you can use the NPER function. Formula =NPER(rate,payment,-loan) Explanation In the example shown, the formula in C10 is… =NPER(C6/12,C7,-C5) How this formula works Loans have four primary components: the amount, the interest rate, …

Continue Reading

Calculate payment for a loan in Excel

by

To calculate a loan payment amount, given an interest rate, the loan term, and the loan amount, you can use the PMT function. Formula =PMT(rate,periods,-amount) Explanation In the example shown, the formula in C10 is: =PMT(C6/12,C7,-C5) How this formula works Loans have four primary components: the amount, the interest rate, the number of periodic payments …

Continue Reading

Calculate original loan amount in Excel

by

To calculate the original loan amount, given the loan term, the interest rate, and a periodic payment amount, you can use the PV function. Formula =PV(rate,periods,-payment) Explanation In the example shown, the formula in C10 is… =PV(C5/12,C7,C6) How this formula works Loans have four primary components: the amount, the interest rate, the number of periodic …

Continue Reading

Tax rate calculation with fixed base in Excel

by

This tutorial shows how to work Tax rate calculation with fixed base in Excel using the example below; Formula =IF(A1<limit,A1*rate,(A1-limit)*rate+fixed) Explanation This example shows how to set up simple formula using the IF function to calculate a tax amount with both fixed and variable components. In the example shown, the formula in C5 is: =IF(B5<limit,B5*rate,(B5-limit)*rate+fixed) in a …

Continue Reading

How to Calculate Tax Rates in Excel

by

This example teaches you how to calculate the tax on an income using the VLOOKUP function in Excel. The following tax rates apply to individuals who are residents of Australia. Taxable income Tax on this income 0 – $18,200 Nil $18,201 – $37,000 19c for each $1 over $18,200 $37,001 – $87,000 $3,572 plus 32.5c for each $1 over $37,000 …

Continue Reading

PMT, RATE, NPER, PV and FV Financial Functions in Excel

by

Learn all about Excel’s PMT, RATE, NPER, PV and FV To illustrate Excel’s most popular financial functions, we consider a loan with monthly payments, an annual interest rate of 6%, a 20-year duration, a present value of $150,000 (amount borrowed) and a future value of 0 (that’s what you hope to achieve when you pay off a loan). We make monthly payments, …

Continue Reading

YIELDDISC function: Description, Usage, Syntax, Examples and Explanation

by

What is YIELDDISC function in Excel? YIELDDISC function is one of Financial functions in Microsoft Excel that returns the annual yield for a discounted security. Syntax of YIELDDISC function YIELDDISC(settlement, maturity, pr, redemption, [basis]) Important: Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for …

Continue Reading

ISPMT function: Description, Usage, Syntax, Examples and Explanation

by

What is ISPMT function in Excel? ISPMT function is one of the Financial functions in Microsoft Excel that calculates the interest paid (or received) for the specified period of a loan (or investment) with even principal payments. Syntax of ISPMT function ISPMT(rate, per, nper, pv) The ISPMT function syntax has the following arguments: Argument Description Rate …

Continue Reading

ACCRINT function: Description, Usage, Syntax, Examples and Explanation

by

What is ACCRINT function in Excel? ACCRINT function is one of the Financial functions in Microsoft Excel that returns the accrued interest for a security that pays periodic interest. Syntax of ACCRINT function ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method]) The ACCRINT function syntax has the following arguments: Issue: The security’s issue date. First_interest: The …

Continue Reading

COUPDAYBS function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPDAYBS function in Excel? COUPDAYBS function is one of the Financial functions in Microsoft Excel that returns the number of days from the beginning of a coupon period until its settlement date. Syntax of COUPDAYBS function COUPDAYBS(settlement, maturity, frequency, [basis]) The COUPDAYBS function syntax has the following arguments: Settlement: The security’s settlement date. The …

Continue Reading

AMORLINC function: Description, Usage, Syntax, Examples and Explanation

by

What is AMORLINC function in Excel? AMORLINC function is one of the Financial functions in Microsoft Excel that returns the depreciation for each accounting period. This function is provided for the French accounting system. If an asset is purchased in the middle of the accounting period, the prorated depreciation is taken into account. Syntax of AMORLINC …

Continue Reading

AMORDEGRC function: Description, Usage, Syntax, Examples and Explanation

by

What is AMORDEGRC function in Excel? AMORDEGRC function is one of the Financial functions in Microsoft Excel that returns the depreciation for each accounting period. This function is provided for the French accounting system. If an asset is purchased in the middle of the accounting period, the prorated depreciation is taken into account. The function …

Continue Reading

ACCRINTM function: Description, Usage, Syntax, Examples and Explanation

by

What is ACCRINTM function in Excel? ACCRINTM function is one of the Financial functions in Microsoft Excel that returns the accrued interest for a security that pays interest at maturity. Syntax of ACCRINTM function ACCRINTM(issue, settlement, rate, par, [basis]) The ACCRINTM function syntax has the following arguments: Issue: The security’s issue date. Settlement: The security’s maturity …

Continue Reading

YIELDMAT function: Description, Usage, Syntax, Examples and Explanation

by

What is YIELDMAT function in Excel? YIELDMAT function is one of the Financial functions in Microsoft Excel that returns the annual yield of a security that pays interest at maturity. Syntax of YIELDMAT function YIELDMAT(settlement, maturity, issue, rate, pr, [basis]) The YIELDMAT function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement date …

Continue Reading

CUMIPMT function: Description, Usage, Syntax, Examples and Explanation

by

What is CUMIPMT function in Excel? CUMIPMT function is one of the Financial functions in Microsoft Excel that returns the cumulative interest paid on a loan between start_period and end_period. Syntax of CUMIPMT function CUMIPMT(rate, nper, pv, start_period, end_period, type) The CUMIPMT function syntax has the following arguments: Rate: The interest rate. Nper: The total number …

Continue Reading

COUPPCD function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPPCD function in Excel? COUPPCD function is one of the Financial functions in Microsoft Excel that returns a number that represents the previous coupon date before the settlement date. Syntax of COUPPCD function COUPPCD(settlement, maturity, frequency, [basis]) The COUPPCD function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement date …

Continue Reading

COUPNUM function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPNUM function in Excel? COUPNUM function is one of the Financial functions in Microsoft Excel that returns the number of coupons payable between the settlement date and maturity date, rounded up to the nearest whole coupon. Syntax of COUPNUM function COUPNUM(settlement, maturity, frequency, [basis]) The COUPNUM function syntax has the following arguments: Settlement: The …

Continue Reading

COUPNCD function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPNCD function in Excel? COUPNCD function is one of the Financial functions in Microsoft Excel that returns a number that represents the next coupon date after the settlement date. Syntax of COUPNCD function COUPNCD(settlement, maturity, frequency, [basis]) The COUPNCD function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement date …

Continue Reading

COUPDAYSNC function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPDAYSNC function in Excel? COUPDAYSNC function is one of the Financial functions in Microsoft Excel that returns the number of days from the settlement date to the next coupon date. Syntax of COUPDAYSNC function COUPDAYSNC(settlement, maturity, frequency, [basis]) The COUPDAYSNC function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement …

Continue Reading

COUPDAYS function: Description, Usage, Syntax, Examples and Explanation

by

What is COUPDAYS function in Excel? COUPDAYS function is one of the Financial functions in Microsoft Excel that returns the number of days in the coupon period that contains the settlement date. Syntax of COUPDAYS function COUPDAYS(settlement, maturity, frequency, [basis]) The COUPDAYS function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement …

Continue Reading

CUMPRINC function: Description, Usage, Syntax, Examples and Explanation

by

What is CUMPRINC function in Excel? CUMPRINC function is one of the Financial functions in Microsoft Excel that returns the cumulative principal paid on a loan between start_period and end_period. Syntax of CUMPRINC function CUMPRINC(rate, nper, pv, start_period, end_period, type) The CUMPRINC function syntax has the following arguments: Rate: The interest rate. Nper:  The total number …

Continue Reading

DB function: Description, Usage, Syntax, Examples and Explanation

by

What is DB function in Excel? DB function is one of the Financial functions in Microsoft Excel that returns the depreciation of an asset for a specified period using the fixed-declining balance method. Syntax of DB function DB(cost, salvage, life, period, [month]) The DB function syntax has the following arguments: Cost: The initial cost of the …

Continue Reading

DDB function: Description, Usage, Syntax, Examples and Explanation

by

What is DDB function in Excel? DDB function is one of the Financial functions in Microsoft Excel that returns the depreciation of an asset for a specified period using the double-declining balance method or some other method you specify. Syntax of DDB function DDB(cost, salvage, life, period, [factor]) The DDB function syntax has the following arguments: …

Continue Reading

DISC function: Description, Usage, Syntax, Examples and Explanation

by

What is DISC function in Excel? DISC function is one of the Financial functions in Microsoft Excel that returns the discount rate for a security. Syntax of DISC function DISC(settlement, maturity, pr, redemption, [basis]) The DISC function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement date is the date after the …

Continue Reading

DOLLARDE function: Description, Usage, Syntax, Examples and Explanation

by

What is DOLLARDE function in Excel? DOLLARDE function is one of the Financial functions in Microsoft Excel that converts a dollar price expressed as an integer part and a fraction part, such as 1.02, into a dollar price expressed as a decimal number. Fractional dollar numbers are sometimes used for security prices. The fraction part …

Continue Reading

DOLLARFR function: Description, Usage, Syntax, Examples and Explanation

by

What is DOLLARFR function in Excel? DOLLARFR function is one of the Financial functions in Microsoft Excel that uses the DOLLARFR to convert decimal numbers to fractional dollar numbers, such as securities prices. Syntax of DOLLARFR function DOLLARFR(decimal_dollar, fraction) The DOLLARFR function syntax has the following arguments: Decimal_dollar:  A decimal number. Fraction: The integer to use …

Continue Reading

IPMT function: Description, Usage, Syntax, Examples and Explanation

by

What is IPMT function in Excel? IPMT function is one of the Financial functions in Microsoft Excel that returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate. Syntax of IPMT function IPMT(rate, per, nper, pv, [fv], [type]) The IPMT function syntax has the following …

Continue Reading

INTRATE function: Description, Usage, Syntax, Examples and Explanation

by

What is INTRATE function in Excel? INTRATE function is one of the Financial functions in Microsoft Excel that returns the interest rate for a fully invested security. Syntax of INTRATE function INTRATE(settlement, maturity, investment, redemption, [basis]) The INTRATE function syntax has the following arguments: Settlement: The security’s settlement date. The security settlement date is the date …

Continue Reading

FVSCHEDULE function: Description, Usage, Syntax, Examples and Explanation

by

What is FVSCHEDULE function in Excel? FVSCHEDULE function is one of the Financial functions in Microsoft Excel that returns the future value of an initial principal after applying a series of compound interest rates. Use FVSCHEDULE to calculate the future value of an investment with a variable or adjustable rate. Syntax of FVSCHEDULE function FVSCHEDULE(principal, schedule) …

Continue Reading

FV function: Description, Usage, Syntax, Examples and Explanation

by

What is FV function in Excel? FV function is one of the Financial functions in Microsoft Excel that calculates the future value of an investment based on a constant interest rate. You can use FV with either periodic, constant payments, or a single lump sum payment. Syntax of FV function FV(rate,nper,pmt,[pv],[type]) For a more complete description …

Continue Reading

EFFECT function: Description, Usage, Syntax, Examples and Explanation

by

What is EFFECT function in Excel? EFFECT function is one of the Financial functions in Microsoft Excel that returns the effective annual interest rate, given the nominal annual interest rate and the number of compounding periods per year. Syntax of EFFECT function EFFECT(nominal_rate, npery) The EFFECT function syntax has the following arguments: Nominal_rate: The nominal interest …

Continue Reading

DURATION function: Description, Usage, Syntax, Examples and Explanation

by

What is DURATION function in Excel? DURATION function is one of the Financial functions in Microsoft Excel that returns the Macauley duration for an assumed par value of $100. Duration is defined as the weighted average of the present value of cash flows, and is used as a measure of a bond price’s response to …

Continue Reading

IRR function: Description, Usage, Syntax, Examples and Explanation

by

What is IRR function in Excel? IRR function is one of the Financial functions in Microsoft Excel that returns the internal rate of return for a series of cash flows represented by the numbers in values. These cash flows do not have to be even, as they would be for an annuity. However, the cash …

Continue Reading

MDURATION function: Description, Usage, Syntax, Examples and Explanation

by

What is MDURATION function in Excel? MDURATION function is one of the Financial functions in Microsoft Excel that returns the modified Macauley duration for a security with an assumed par value of $100. Syntax of MDURATION function MDURATION(settlement, maturity, coupon, yld, frequency, [basis]) The MDURATION function syntax has the following arguments: Settlement:  The security’s settlement date. …

Continue Reading

How to set check register balance in Excel

by

This tutorial shows how to set a check register formula that calculates a running balance and also, blank values using formula based on simple addition and subtraction. See illustrations below: Formula =balance-debit+credit Explanation In the example shown, the formula in G6 is: =G5-E6+F6 How this formula works The value in G5 is hard-coded. The formula picks …

Continue Reading

Posts navigation

  • Previous
  • 1
  • 2

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • How to use Excel XOR Function
  • Not Equal To ‘<>‘ operator in Excel
  • Excel If, Nested If, And/Or Criteria Examples
  • IF, AND, OR and NOT Functions Examples in Excel
  • Check multiple cells are equal in Excel

Date Time

  • Get week number from date in Excel
  • Calculate date overlap in days in Excel
  • Get work hours between dates and times in Excel
  • Add workdays no weekends in Excel
  • How to calculate most recent day of week in Excel

Grouping

  • Categorize text with keywords in Excel
  • Group times into unequal buckets in Excel
  • Calculate conditional mode with criteria in Excel
  • Group numbers at uneven intervals in Excel
  • Group times into 3 hour buckets in Excel

General

  • Hide and Unhide Columns or Rows in Excel
  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • Flash Fill in Excel
  • How to choose page/paper size in Excel before Printing
  • How to fill cell ranges with random text values in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning