Spreadsheet::Engine::Function::DDB - Spreadsheet funtion DDB()


Spreadsheet-Engine documentation Contained in the Spreadsheet-Engine distribution.

Index


Code Index:

NAME

Top

Spreadsheet::Engine::Function::DDB - Spreadsheet funtion DDB()

SYNOPSIS

Top

  =DDB(cost, salvage, lifetime, period, [lifetime])

DESCRIPTION

Top

This calculates depreciation by declining balance.

See: http://en.wikipedia.org/wiki/Depreciation

HISTORY

Top

This is a Modified Version of code extracted from SocialCalc::Functions in SocialCalc 1.1.0

COPYRIGHT

Top

LICENCE

Top

The contents of this file are subject to the Artistic License 2.0; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.perlfoundation.org/artistic_license_2_0


Spreadsheet-Engine documentation Contained in the Spreadsheet-Engine distribution.

package Spreadsheet::Engine::Function::DDB;

use strict;
use warnings;

use base 'Spreadsheet::Engine::Fn::depreciation';
use List::Util 'min';

sub argument_count { -4 => 5 }
sub signature { 'n', 'n', '>=1', 'n', 'n' }

sub calculate {
  my ($self, $cost, $salvage, $lifetime, $period, $method) = @_;
  $method ||= 2;

  my $depreciation = 0;    # calculated for each period
  my $accumulated  = 0;    # accumulated by adding each period's

  # calculate for each period based on net from previous
  for my $i (1 .. min($period, $lifetime)) {
    $depreciation = ($cost - $accumulated) * ($method / $lifetime);
    {                      # don't go lower than salvage value
      my $bottom = $cost - $salvage - $accumulated;
      $depreciation = $bottom if $bottom < $depreciation;
    }
    $accumulated += $depreciation;
  }
  return $depreciation;
}

1;

__END__