PhpSpreadsheet/tests/data/Calculation/Financial/AMORDEGRC.php

31 lines
609 B
PHP

<?php
// Cost, Date purchased, End of the 1st period, Salvage, Period, Depreciation, Basis, Result
return [
[
776,
2400, '2008-08-19', '2008-12-31', 300, 1, 0.15, 1,
],
[
42,
150, '2011-01-01', '2011-09-30', 20, 1, 0.2, 4,
],
[
25,
150, '2011-01-01', '2011-09-30', 20, 2, 0.2, 4,
],
[
16,
150, '2011-01-01', '2011-09-30', 20, 3, 0.15, 4,
],
[
42,
150, '2011-01-01', '2011-09-30', 20, 1, 0.4, 4,
],
[
'#VALUE!',
550, 'notADate', '2020-12-25', 20, 1, 0.2, 4,
],
];