Calculate line totals with multiplication
Multiply quantity by unit price to get a line total.
Accounting Excel is reconciliation work: two lists that should agree, and the job of finding out where they do not.
The month-end close is a sequence of comparisons — ledger against bank, subledger against control account, this period against last. Most of it is lookups and conditional sums over data that arrives inconsistently formatted, with trailing spaces and numbers stored as text.
Values that look identical but will not match, because one side has a trailing space or a number stored as text. A lookup returns #N/A and the instinct is to blame the formula rather than the data.
Aging receivables by invoice date, summing by account code with more than one condition, and spotting why two apparently identical values fail to match.
8 exercises using the situations above, ordered from most approachable to hardest.
Multiply quantity by unit price to get a line total.
Use VLOOKUP with exact match to pull prices from a product table.
VLOOKUP
Require two conditions to be true at once.
IF · AND
Extract characters from the middle of a text value.
MID
Work out how many days old each invoice is.
TODAY
Combine date arithmetic with a conditional label.
IF · TODAY
Diagnose and correct a formula that returns the wrong answer.
IF
Use COUNTIF to reconcile two lists and spot what is absent.
COUNTIF · IF