PRICEDISC function

PRICEDISC ফাংশন এক্সেলে ব্যবহৃত একটি Financial Functions যা Discounted (নন-ইন্টারেস্ট-বিয়ারিং) সিকিউরিটির মূল্য নির্ধারণ করে। এই সিকিউরিটিগুলো ইস্যু করার সময় face value এর চেয়ে কম দামে বিক্রি করা হয় এবং মেয়াদোত্তীর্ণ হওয়ার সময় Face Price ফেরত দেয়।

PRICEDISC ফাংশন কিভাবে কাজ করে?

PRICEDISC ফাংশন নিম্নলিখিত 5টি অর্গুমেন্ট গ্রহণ করে:

  1. Settlement date: সিকিউরিটি বিক্রির তারিখ
  2. Maturity date: সিকিউরিটি মেয়াদোত্তীর্ণ হওয়ার তারিখ
  3. Discount rate: ছাড়ের হার
  4. Redemption value: মুখমূল্য (প্রতি $100)
  5. Basis: দিন গণনার পদ্ধতি (ঐচ্ছিক)

ফাংশনটি এই অর্গুমেন্টগুলো ব্যবহার করে সিকিউরিটির মূল্য নির্ধারণ করে।

PRICEDISC ফাংশন ব্যবহারের নিয়ম:

  • সকল অর্গুমেন্ট অবশ্যই সংখ্যা হতে হবে।
  • Maturity date অবশ্যই Settlement date এর পরে হতে হবে।
  • Discount rate এবং Redemption value অবশ্যই 0 এর চেয়ে বড় হতে হবে।
  • Basis 0 থেকে 4 এর মধ্যে একটি সংখ্যা হতে হবে।

PRICEDISC ফাংশন ব্যবহারের উদাহরণ:

ধরা যাক, একটি কোম্পানি 2008 সালের 2 ফেব্রুয়ারী $100 মুখমূল্যের একটি ছাড়যুক্ত সিকিউরিটি ইস্যু করে। সিকিউরিটিটি 2008 সালের 1 মার্চ মেয়াদোত্তীর্ণ হবে এবং ছাড়ের হার 5.25%। সিকিউরিটিটি Actual/360 দিন গণনার পদ্ধতি ব্যবহার করে। এই ক্ষেত্রে, PRICEDISC ফাংশনটি নিম্নলিখিতভাবে ব্যবহার করা যেতে পারে:

=PRICEDISC(A2,A3,A4,A5,A6)

যেখানে:

  • A2 = 2/16/2008 (Settlement date)
  • A3 = 3/1/2008 (Maturity date)
  • A4 = 5.25% (Discount rate)
  • A5 = $100 (Redemption value)
  • A6 = 2 (Basis)

এই ফাংশনটি $99.80 ফলাফল ফেরত দেবে, যা সিকিউরিটির মূল্য।

Description

Returns the price per $100 face value of a discounted security.

Syntax

PRICEDISC(settlement, maturity, discount, redemption, [basis])

Important: Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text.

The PRICEDISC function syntax has the following arguments:

  • Settlement    Required. 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    Required. The security’s maturity date. The maturity date is the date when the security expires.
  • Discount    Required. The security’s discount rate.
  • Redemption    Required. The security’s redemption value per $100 face value.
  • Basis    Optional. The type of day count basis to use.
BasisDay count basis
0 or omittedUS (NASD) 30/360
1Actual/actual
2Actual/360
3Actual/365
4European 30/360

Remarks

  • Microsoft Excel stores dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after January 1, 1900.
  • 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.
  • Settlement, maturity, and basis are truncated to integers.
  • If settlement or maturity is not a valid date, PRICEDISC returns the #VALUE! error value.
  • If discount ≤ 0 or if redemption ≤ 0, PRICEDISC returns the #NUM! error value.
  • If basis < 0 or if basis > 4, PRICEDISC returns the #NUM! error value.
  • If settlement ≥ maturity, PRICEDISC returns the #NUM! error value.
  • PRICEDISC is calculated as follows:Equationwhere:
    • B = number of days in year, depending on year basis.
    • DSM = number of days from settlement to maturity.

Example

Copy the example data in the following table, and paste it in cell A1 of a new Excel worksheet. For formulas to show results, select them, press F2, and then press Enter. If you need to, you can adjust the column widths to see all the data.

DataArgument description
2/16/2008Settlement date
3/1/2008Maturity date
5.25%Percent discount rate
$100Redemption value
2Actual/360 basis
FormulaDescriptionR esult
=PRICEDISC(A2,A3,A4,A5,A6)The bond price, for the bond with the arguments specified in cells A2:A6.$99.80

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top