TBILLPRICE function in Google Sheets
Calculates the price of a US Treasury Bill based on discount rate.
=TBILLPRICE(settlement, maturity, discount)TBILLPRICE 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.
- discountnumberRequired
The discount rate of the bill at time of purchase.
TBILLPRICE examples
Formulas you'll actually reuse.
Price per $100 of a 91-day T-bill quoted at a 4.5% discount:
=TBILLPRICE(DATE(2026, 3, 15), DATE(2026, 6, 14), 4.5%)Result
98.8625The cost of a $1,000,000 face-value bill:
=TBILLPRICE(B2, C2, D2) * 1000000 / 100Result
988625
TBILLPRICE in Excel
Same name — your formula ports as-is.
Try TBILLPRICE in the playground
Edit the example — nothing to install.
Preloaded with the TBILLPRICE formula from Example 1 — change anything and watch it respond.
TBILLPRICE errors
What they mean — and the fixes.
#NUM!maturity is more than a year after settlement, or the discount rate is zero or negative.
Related functions
More ways Google Sheets gets this done.
- ACCRINTCalculates the accrued interest of a security that has periodic payments.FinancialExcel
- ACCRINTMCalculates the accrued interest of a security that pays interest at maturity.FinancialExcel
- AMORLINCReturns the depreciation for an accounting period, or the prorated depreciation if the asset was purchased in the middle of a period.FinancialExcel
- COUPDAYBSCalculates the number of days from the first coupon, or interest payment, until settlement.FinancialExcel
- COUPDAYSCalculates the number of days in the coupon, or interest payment, period that contains the specified settlement date.FinancialExcel
- COUPDAYSNCCalculates the number of days from the settlement date until the next coupon, or interest payment.FinancialExcel