Lesson ProgressPhase 2 of 6
Phase 2Introduction
Introduction: Build Asset Register and Depreciation Schedule

Anatomy of the asset register and depreciation schedule: sheets, columns, formulas, and common traps

Anatomy of the Asset Register Workbook
Two Sheets, One Source of Truth

The workbook has two main sheets that work together. The Asset Register lists every long-term asset with its key details. The Depreciation Schedule calculates how each asset loses value year by year.

Sheet 1: Asset Register

Each row is one asset. The columns store everything needed to calculate depreciation:

  • Asset ID — unique identifier (e.g., A-001)
  • Description — what the asset is
  • Cost — what you paid for it
  • Useful Life — how many years it will last
  • Salvage Value — what it will be worth at the end
  • Method — SL (straight-line) or DDB (double-declining balance)
  • Purchase Date — when you bought it

Sheet 2: Depreciation Schedule

Each row is one year of an asset's life. The columns calculate:

  • Annual Expense — depreciation for that year
  • Accumulated Depreciation — total depreciation taken so far
  • Book Value — cost minus accumulated depreciation
  • Check — verifies Book Value = Cost − Accumulated Depreciation

Formula Architecture

Depreciable Base (SL): =(Cost - SalvageValue) / UsefulLife

Accumulated Depreciation (Year N): =PriorYearAccum + CurrentYearExpense

Book Value: =Cost - AccumulatedDepreciation

Check: =IF(BookValue = Cost - AccumDep, "OK", "ERROR")

Common Failure Mode: Hard-Coded Numbers

The most common error is typing the annual expense directly into the schedule instead of calculating it from the register. If cost changes, a hard-coded number does not update. Always use a formula that references the register's cost, life, and salvage value cells.

Reference: Asset Register Layout
This is what your Asset Register sheet should look like when complete.
ABCDEFG
1ABCDEFG
2Asset Register
3RowAsset IDDescriptionCostUseful LifeSalvage ValueMethodPurchase Date
43A-001Delivery Van3000055000SL1/15/2025
54A-0023D Printer1500041500SL3/1/2025
65A-003Server Rack80003800DDB6/1/2025
7
8
9
10
Reference: Depreciation Schedule Layout (A-001, SL)
Annual expense is constant for straight-line. Book value reaches salvage value in the final year.
ABCDE
1ABCD
2Depreciation Schedule — A-001 Delivery Van
3YearAnnual ExpenseAccumulated DepreciationBook ValueCheck
4Start30000OK
515000500025000OK
6250001000020000OK
7350001500015000OK
8450002000010000OK
955000250005000OK
10
Key Vocabulary: Asset Register and Depreciation Schedule
Fill in the key concepts that make a professional asset tracking workbook.
Attempts: 0Score: 0%
📝 Fill in the Blanks
Complete each sentence by typing the missing word or phrase
📚 Word Bank
Available answers