Leading the way in Microsoft Office Development
 Home|Excel|Word|PowerPoint|Consultancy|Feedback|Contact 
 Microsoft Excel > Functions > Financial > YIELD

 

YIELD(settlement, maturity, rate, pr, redemption, frequency [,basis])

 
 Returns the yield on a security that pays periodic interest.

 settlementThe settlement date of the security.
 maturityThe maturity date of the security.
 rateThe annual coupon rate of the security.
 prThe price per $100 face value.
 redemptionThe security's redemption value per $100 face value.
 frequencyThe number of coupon payments per year:
1 = annual
2 = semi-annual
4 = quarterly
 basisThe type of day counting to use.
0 = US 30/360
1 = Actual/Actual
2 = Actual/360
3 = Actual/365
4 = European 30/360

 REMARKS
 
  • This function is only available if you have the Analysis ToolPak add-in installed.
     
  • This function can be used to calculate the bond yield.
     
  • The "settlement", "maturity", "frequency", and "basis" are truncated to integers.
     
  • If "settlement" or "maturity" is not a valid date, then #NUM! is returned.
     
  • If "settlement" = "maturity", then #NUM! is returned.
     
  • If "rate" < 0, then #NUM! is returned.
     
  • If "pr" = 0, then #NUM! is returned.
     
  • If "redemption" = 0, then #NUM! is returned.
     
  • If "frequency" is any number other than 1, 2, or 4, then #NUM! is returned.
     
  • If "basis" < 0, then #NUM! is returned.
     
  • If "basis" > 4, then #NUM! is returned.
     
  • If "basis" is left blank, then 0 is used.
     
  • If there is more than one coupon period until redemption, YIELD is calculated through a hundred iterations. The resolution uses the Newton method, based on the formula used for the function PRICE. The yield is changed until the estimated price given the yield is close to price.

     EXAMPLES
     
     A
    1=YIELD("2/15/1999","11/15/2007",0.0575,95.04287,100,2,0) = #VALUE!
     

     Functions - Y | Index - Y | Office Online 

     Copyright © 2004-2007 Better Solutions Limited. All Rights Reserved.Top