Skip to content
Google Sheets

YIELDDISC function in Google Sheets

Calculates the annual yield of a discount (non-interest-bearing) security, based on price.

=YIELDDISC(settlement, maturity, price, redemption, [day_count_convention])

YIELDDISC syntax and parameters

Five arguments, four required.

  • settlementanyRequired

    The settlement date of the security, the date after issuance when the security is delivered to the buyer.

  • maturityanyRequired

    The maturity or end date of the security, when it can be redeemed at face, or par value.

  • pricenumberRequired

    The price at which the security is bought.

  • redemptionnumberRequired

    The redemption value of the security.

  • day_count_conventionnumberOptional

    [ OPTIONAL - 0 by default ] - An indicator of what day count method to use. 0 indicates US (NASD) 30/360 - This assumes 30 day months and 360 day years as per the National Association of Securities Dealers standard, and performs specific adjustments to entered dates which fall at the end of months. 1 indicates Actual/Actual - This calculates based upon the actual number of days between the specified dates, and the actual number of days in the intervening years. Used for US Treasury Bonds and Bills, but also the most relevant for non-financial use. 2 indicates Actual/360 - This calculates based on the actual number of days between the specified dates, but assumes a 360 day year. 3 indicates Actual/365 - This calculates based on the actual number of days between the specified dates, but assumes a 365 day year. 4 indicates European 30/360 - Similar to 0, this calculates based on a 30 day month and 360 day year, but adjusts end-of-month dates according to European financial conventions.

YIELDDISC examples

Formulas you'll actually reuse.

  1. The annual yield of a discounted security bought at 98.8625:

    =YIELDDISC(DATE(2026, 3, 15), DATE(2026, 6, 14), 98.8625, 100, 2)

    Result0.0455

  2. Compare against the target yield in F2:

    =IF(YIELDDISC(B2, C2, D2, 100, 2) > F2, "Buy", "Skip")

YIELDDISC in Excel

Same name — your formula ports as-is.

Try YIELDDISC in the playground

Edit the example — nothing to install.

Preloaded with the YIELDDISC formula from Example 1 — change anything and watch it respond.

Loading the editor…