Skip to content
Google Sheets

TBILLYIELD function in Google Sheets

Calculates the yield of a US Treasury Bill based on price.

=TBILLYIELD(settlement, maturity, price)

TBILLYIELD syntax and parameters

Three arguments, three 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.

TBILLYIELD examples

Formulas you'll actually reuse.

  1. The money-market yield of a bill bought at 98.8625:

    =TBILLYIELD(DATE(2026, 3, 15), DATE(2026, 6, 14), 98.8625)

    Result0.0455

  2. The yield pickup between two bills quoted in rows 2 and 3:

    =TBILLYIELD(B2, C2, D2) - TBILLYIELD(B3, C3, D3)

TBILLYIELD in Excel

Same name — your formula ports as-is.

Try TBILLYIELD in the playground

Edit the example — nothing to install.

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

Loading the editor…