Get amount received at maturity
=RECEIVED(settlement, maturity, investment, discount, [basis])
| Parameter | Description |
|---|---|
settlement |
Settlement date of the security. |
maturity |
Maturity date of the security. |
investment |
Amount investment in the security. |
discount |
The security's discount rate. |
basis |
[optional] Day count basis (see below, default =0). |
In the example shown, we want to find the amount received at maturity for a bond with an initial investment of $1000 and a discount rate of 4.25%. The
=RECEIVED(C7,C8,C5,C9,C10)
In Excel, dates are serial numbers. Generally, the best way to enter valid dates is to use cell references, as shown in the example. To enter valid da
=RECEIVED(DATE(2017,7,6),DATE(2020,1,15),1000,0.0425,0)