PRICEMAT

Updated on

PRICEMAT is a DAX function that returns the price per $100 face value of a security that pays interest at maturity.

Syntax

PRICEMAT(
   Settlement,
   Maturity,
   Issue,
   Rate,
   Yld,
   Basis
)
Argument Properties Description
Settlement The security’s settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.
Maturity The security’s maturity date. The maturity date is the date when the security expires.
Issue The security’s issue date.
Rate The security’s interest rate at date of issue.
Yld The security’s annual yield.
Basis Optional The type of day count basis to use.

Return Values

The price per $100 face value.

Remarks

  • Dates are stored as sequential serial numbers so they can be used in calculations. In DAX, December 30, 1899 is day 0, and January 1, 2008 is 39448 because it is 39,448 days after December 30, 1899.

  • The settlement date is the date a buyer purchases a coupon, such as a bond. The maturity date is the date when a coupon expires. For example, suppose a 30-year bond is issued on January 1, 2008, and is purchased by a buyer six months later. The issue date would be January 1, 2008, the settlement date would be July 1, 2008, and the maturity date would be January 1, 2038, which is 30 years after the January 1, 2008, issue date.

  • PRICEMAT is calculated as follows:

    PRICEMAT=100+(DIMB×rate×100)1+(DSMB×yld)(AB×rate×100)

    where:

    • B = number of days in year, depending on year basis.
    • DSM = number of days from settlement to maturity.
    • DIM = number of days from issue to maturity.
    • A = number of days from issue to settlement.
  • settlement, maturity, and issue are truncated to integers.

  • basis is rounded to the nearest integer.

  • An error is returned if:

    • settlement, maturity, or issue is not a valid date.
    • maturity > settlement > issue is not satisfied.
    • rate < 0.
    • yld < 0.
    • basis < 0 or basis > 4.
  • This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Example

The following DAX query:

Data Description
2/15/2008 Settlement date
4/13/2008 Maturity date
11/11/2007 Issue date
6.10% Percent semiannual coupon
6.10% Percent yield
0 30/360 basis
EVALUATE
{
  PRICEMAT(DATE(2008,2,15), DATE(2008,4,13), DATE(2007,11,11), 0.061, 0.061, 0)
}

Returns the price per $100 face value of a security with the terms specified above.

[Value]
99.9844988755569

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/pricemat-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy