Skip to content
Google Sheets

DDB function in Google Sheets

Calculates the depreciation of an asset for a specified period using the double-declining balance method.

=DDB(cost, salvage, life, period, [factor])

DDB syntax and parameters

Five arguments, four required.

  • costnumberRequired

    The initial cost of the asset.

  • salvagenumberRequired

    The value of the asset at the end of depreciation.

  • lifenumberRequired

    The number of periods over which the asset is depreciated.

  • periodnumberRequired

    The single period within life for which to calculate depreciation.

  • factornumberOptional

    [ OPTIONAL - 2 by default ] - The factor by which depreciation decreases.

DDB examples

Formulas you'll actually reuse.

  1. Double-declining balance, year 1 — twice the straight-line rate on the full cost:

    =DDB(24000, 4000, 5, 1)

    Result9600

  2. Year 2 — the same rate on what's left:

    =DDB(24000, 4000, 5, 2)

    Result5760

DDB in Excel

Same name — your formula ports as-is.

Try DDB in the playground

Edit the example — nothing to install.

Preloaded with the DDB formula from Example 1 — change anything and watch it respond.

Loading the editor…