You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function `AMORLINC` returns the depreciation for each accounting period, specifically designed for the French accounting system. If an asset is purchased in the middle of the accounting period, the prorated depreciation is considered.
1106
+
The `AMORLINC` function returns the depreciation for each accounting period, specifically designed for the French accounting system. If an asset is purchased in the middle of the accounting period, the prorated depreciation is considered.
* If settlement or maturity is not a valid date, `YIELD` returns the `#VALUE!` error value.
1273
1267
1274
-
* If rate < 0, `YIELD` returns the `#NUM!` error value.
1268
+
* If rate is less than 0, `YIELD` returns the `#NUM!` error value.
1275
1269
1276
-
* If pr ≤ 0 or if redemption ≤ 0, `YIELD` returns the `#NUM!` error value.
1270
+
* If pr or redemption is less than or equal to 0, `YIELD` returns the `#NUM!` error value.
1277
1271
1278
1272
* If frequency is any number other than 1, 2, or 4, `YIELD` returns the `#NUM!` error value.
1279
1273
1280
-
* If basis < 0 or if basis > 4, `YIELD` returns the `#NUM!` error value.
1274
+
* If basis is less than 0 or greater than 4, `YIELD` returns the `#NUM!` error value.
1281
1275
1282
-
* If settlement ≥ maturity, `YIELD` returns the `#NUM!` error value.
1276
+
* If settlement is less than or equal to maturity, `YIELD` returns the `#NUM!` error value.
1283
1277
1284
-
* If there is more than one coupon period until redemption, `YIELD` is calculated through a hundred iterations. The resolution uses the Newton method, based on the formula used for the function `PRICE`. The yield is changed until the estimated price given the yield is close to price.
1278
+
* If there is more than one coupon period until redemption, `YIELD` is calculated using the Newton method, based on the formula used for the function `PRICE`. The yield is changed until the estimated price given the yield is close to price.
* If settlement, maturity, or issue is not a valid date, `PRICEMAT` returns the `#VALUE!` error value.
1421
1415
1422
-
* If rate < 0 or if yld < 0, `PRICEMAT` returns the `#NUM!` error value.
1416
+
* If rate or yld is less than 0, `PRICEMAT` returns the `#NUM!` error value.
1423
1417
1424
-
* If basis < 0 or if basis > 4, `PRICEMAT` returns the `#NUM!` error value.
1418
+
* If basis is less than 0 or greater than 4, `PRICEMAT` returns the `#NUM!` error value.
1425
1419
1426
-
* If settlement ≥ maturity, `PRICEMAT` returns the `#NUM!` error value.
1420
+
* If settlement is greater than equal to maturity, `PRICEMAT` returns the `#NUM!` error value.
1427
1421
1428
1422
1429
1423
1430
1424
## AMORDEGRC
1431
1425
1432
-
The function `AMORDEGRC` returns the depreciation for each accounting period under the French accounting system. If an asset is purchased in the middle of an accounting period, prorated depreciation is calculated. The function applies a depreciation coefficient based on the asset's lifespan.
1426
+
The `AMORDEGRC` function returns the depreciation for each accounting period under the French accounting system. If an asset is purchased in the middle of an accounting period, prorated depreciation is calculated. The function applies a depreciation coefficient based on the asset's lifespan.
1433
1427
1434
1428
**Syntax**
1435
1429
@@ -1475,7 +1469,7 @@ The function `AMORDEGRC` returns the depreciation for each accounting period und
1475
1469
1476
1470
* The depreciation rate increases to 50% for the period preceding the last and to 100% for the final period.
1477
1471
1478
-
*The function returns `#NUM!` if the life of the asset is less than 1 year or falls into invalid ranges (e.g., between 0 and 1, 1 and 2, etc.).
1472
+
*`AMORDEGRC` returns `#NUM!` if the life of the asset is less than 1 year or falls into invalid ranges (e.g., between 0 and 1, 1 and 2, etc.).
1479
1473
1480
1474
* Depreciation is calculated until the last period of the asset's life or until the cumulative depreciation equals the cost minus the salvage value.
1481
1475
@@ -1637,7 +1631,7 @@ The function `ODDLPRICE` returns the price per $100 face value of a security hav
1637
1631
1638
1632
*`#VALUE!` if any of the date arguments are invalid.
1639
1633
1640
-
*`#NUM!` if `rate < 0`, `yld < 0`, `basis < 0`, or `basis > 4`.
1634
+
*`#NUM!` if rate is less than 0, yld is less than 0, basis is less than 0, or basis greater than 4.
1641
1635
1642
1636
*`#NUM!` if the condition `maturity > settlement > last_interest` is not satisfied.
0 commit comments