Numbers function

ABS

How big, ignoring the sign.

Purpose

Ask how big a difference is without caring which way it went

Returns

The number with any minus sign removed

Syntax

=ABS(number)

ArgumentRequiredWhat goes here
numberRequiredThe figure whose size you want, over or under.

How to use ABS

ABS returns the size of a number and drops the sign.

In accounting it belongs to reconciliation. A control account tie-out asks whether the difference is nought, and the answer is the same size whether the ledger is over or under.

It is also how a variance report gets sorted by how much something moved rather than by direction, and how a tolerance test is written once instead of twice.

Examples

Every result below is worked out by the same evaluator that marks your answers, on the sheet shown here.

GL journal — October.xlsxSheet1
The October general ledger journal, debits and credits in their own columns
ABCDE
1DateAccountDescriptionDebitCredit
22026-10-026100Professional fees15000
32026-10-052100Trade payables01500
42026-10-096200Travel and subsistence3200
52026-10-142100Trade payables0320
62026-10-186100Professional fees27500
72026-10-232100Trade payables02750
82026-11-026300Office supplies1840
92026-11-022100Trade payables0184
FormulaResult
=ABS(SUM(D2:D9)-SUM(E2:E9))Does the journal balance. Nought is the only answer worth having, and ABS means you do not have to know which side is heavier to ask.0
=ABS(D2-E3)One side of an entry against the other.0
=IF(ABS(SUM(D2:D9)-SUM(E2:E9))<1,"Balances","Check the journal")A tolerance written once. Without ABS this test needs two comparisons to cover both directions.Balances

Notes

  • ABS on a difference hides the direction. Keep the signed figure alongside it if anyone has to act on which way it went.
Practise ABS in Unit 18

A reference tells you what it does. A unit makes you use it.