Skip to content
Google Sheets

SLN function in Google Sheets

Calculates the depreciation of an asset for one period using the straight-line method.

=SLN(cost, salvage, life)

SLN syntax and parameters

Three arguments, three 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.

SLN examples

Formulas you'll actually reuse.

  1. Straight-line depreciation: a $24,000 asset, $4,000 salvage, 5 years:

    =SLN(24000, 4000, 5)

    Result4000

  2. The monthly charge from cost, salvage and life in cells:

    =SLN(B2, C2, D2) / 12

    Result333.33

SLN in Excel

Same name — your formula ports as-is.

Try SLN in the playground

Edit the example — nothing to install.

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

Loading the editor…