Skip to content
Blog/Excel
Excel

How to Reconcile in Excel

Reconcile records in Excel by standardizing keys, matching amounts, checking dates, flagging differences, and reviewing exceptions.

/5 min read

Reconciling in Excel means comparing two sets of records and finding what matches, what is missing, and what differs. The records might be bank transactions vs an expense tracker, invoices vs payments, inventory counts vs purchases, or schedule hours vs payroll.

The process is simple: clean both lists, create matching keys, compare the records, and review the exceptions.

Prepare both tables

Step 1. Put each source in a table

Use one row per transaction or record. Keep headers clear and remove subtotals or blank separator rows.

Step 2. Standardize formats

Dates should be real dates, amounts should be numbers, and names should be cleaned enough to compare.

Step 3. Create a matching key

A key can combine date, amount, vendor, invoice number, employee, or other fields. For example:

fx
=TEXT(A2,"yyyymmdd")&"|"&TEXT(B2,"0.00")&"|"&C2

This creates a repeatable comparison value for each row.

Match records with COUNTIF or XLOOKUP

To check whether a key from Table A exists in Table B:

fx
=IF(COUNTIF(TableBKeys, A2)>0, "Matched", "Missing")

To pull details from the matching record:

fx
=XLOOKUP(A2, TableBKeys, TableBStatus, "Not found")

After that, filter for "Missing", "Not found", duplicate keys, or amount differences.

Example: reconcile clinic expenses

A clinic might compare card transactions against its clinic expense tracker. The goal is to catch missing receipts, uncategorized supply purchases, duplicate entries, and transactions that never made it into the tracker.

Create a key from date, amount, and vendor. Then flag unmatched card transactions and review them before month end.

TIP

For messy vendor names, match on amount and date first, then inspect vendor differences manually.

Common reconciliation problems

ProblemCauseFix
Same transaction appears twiceDuplicate import or manual entryFlag duplicate keys before matching
Amount differs slightlyFees, refunds, tax, or partial paymentsAdd a tolerance review column
Dates are off by one or two daysBank posting delayUse a date-window check for close matches
Vendor names do not matchDifferent naming conventionsClean vendor names before comparison

The Griddy way

Reconciliation is repetitive because every source formats records a little differently.

"Reconcile this bank export against my clinic expense tracker, match by date and amount, flag missing rows, duplicates, and transactions without receipts."

Griddy can standardize the records, create matching checks, and produce a clean exceptions view for review.

Skip the manual work

Describe it. Griddy does it.

Instead of writing this formula yourself, just tell Griddy what you need in plain English. Works in Excel and Google Sheets.

Use this on real templates

Reconcile tracker rows before month-end review

Reconciliation is easier when expense and invoice templates preserve dates, amounts, vendors, receipt status, and payment status consistently.

Finance