← Docs / Glossary
What Is a Trial Balance? What It Catches and What It Misses
What a trial balance shows, how to read one, which bookkeeping errors it exposes — and the whole class of errors it cannot see.
A trial balance is the list of every account in the general ledger with its current balance, debit balances in one column and credit balances in the other. The two columns must total the same amount — in double-entry bookkeeping every transaction posts equal debits and credits, so their account-level sums must be equal too. It is the bridge between the raw ledger and the financial statements: the balance sheet and P&L are the trial balance's accounts mapped into statutory layouts.
What one looks like
A small company mid-year, in euros, Lithuanian chart codes:
| Account | Debit | Credit |
|---|---|---|
| 1220 Machinery and equipment | 24,000 | |
| 1229 Accumulated depreciation | 6,000 | |
| 2040 Goods for resale | 12,500 | |
| 2410 Trade receivables | 9,300 | |
| 2710 Bank | 6,200 | |
| 3010 Share capital | 2,500 | |
| 3410 Retained earnings | 9,900 | |
| 4010 Long-term loans | 12,000 | |
| 4430 Trade payables | 8,400 | |
| 4492 VAT payable | 2,100 | |
| 5001 Service revenue | 38,000 | |
| 6204 Salary expense | 21,300 | |
| 6209 Administrative expenses | 5,600 | |
| Total | 78,900 | 78,900 |
Three things worth noticing. Balance-sheet and P&L accounts sit side by side — the trial balance predates their separation into statements. Contra accounts (1229) appear on their natural credit side even though they belong to the asset class. And the totals match, which is the property the report is named for.
What a trial balance catches
Historically, the trial balance was the error detector for hand-kept books. An unbalanced trial balance proves the ledger contains at least one of:
- an entry posted on one side but not the other (posting interrupted halfway);
- unequal amounts on the two sides — a transcription slip like 1,210 debited but 1,120 credited;
- an arithmetic error in an account's running balance.
Accountants developed heuristics for hunting the difference: divisible by 9 suggests transposed digits; divisible by 2 suggests an amount posted to the wrong side. Whole careers included evenings spent this way.
What it misses
The trial balance's blind spot is everything that balances. It cannot see:
- Omitted transactions. An invoice never entered affects neither column.
- Duplicated transactions. Entered twice, balanced twice.
- Wrong accounts. Rent debited to salary expense balances perfectly — the P&L is wrong anyway.
- Wrong amounts on both sides. 210 instead of 2,100 on both sides balances.
- Wrong direction. Debit and credit swapped on both lines of an entry.
- Compensating errors. Two mistakes that cancel numerically.
A balanced trial balance is a necessary condition for correct books, nowhere near a sufficient one. The errors it misses are found by other disciplines: bank reconciliation (does the ledger's bank balance match the bank's?), subledger reconciliation (do per-customer invoices sum to the receivables control account?), and period-end review of unusual balances — an expense account with a credit balance, receivables that went negative.
The trial balance in modern software
In a system where the ledger itself refuses unbalanced entries, the trial balance can never be out of balance — Nordlet's POST /v1/ledger/journal/transactions/create validates debits against credits before writing anything, so the failure mode the report was invented for is structurally impossible. That doesn't make the report obsolete; it changes its job. The trial balance becomes the closing review checklist: scan for wrong-sided balances, compare against last period for accounts that moved unexpectedly, confirm the VAT accounts match the return, and only then lock the accounting period. In Nordlet it is one call — POST /v1/reports/trial-balance — and feeds directly into POST /v1/reports/financial-statements, which maps the same balances into the statutory balance sheet and P&L layouts.
Unadjusted, adjusted, post-closing
Textbooks distinguish three snapshots: the unadjusted trial balance (before period-end adjusting entries), the adjusted one (after them — the basis for statements), and the post-closing one (after income and expenses roll into equity, leaving only balance-sheet accounts). In software these are the same report run at different moments; the names survive as vocabulary for when in the close you are looking.
FAQ
What is a trial balance in simple terms?
A two-column list of every ledger account and its balance — debits left, credits right. Equal totals confirm the ledger's entries balance; the report is the standard starting point for period-end review and statement preparation.
What is the difference between a trial balance and a balance sheet?
The trial balance is an internal working document listing all accounts, including income and expenses, in raw form. The balance sheet takes only the asset, liability and equity balances and presents them in a layout defined by accounting law. One is a query; the other is a statement.
Can a trial balance be wrong even if it balances?
Yes — that is its fundamental limitation. Omitted, duplicated, misclassified or mis-measured transactions all balance. Equal totals rule out one-sided posting errors and nothing else; reconciliations and review do the rest.
Why does my accounting software's trial balance always balance?
Because the software refuses unbalanced entries at posting time, imbalance can never accumulate in the ledger. The report's historical error-detection job is gone; its review job — spotting wrong-sided and unexpected balances before closing — remains.
What does an adjusted trial balance mean?
The trial balance run after period-end adjusting entries — depreciation, accruals, deferrals — have been posted. It is the version financial statements are prepared from; "unadjusted" is the same report before those entries.