{
  "question_id": "CG-P1B-FULL-112",
  "slug": "how-to-do-a-bank-reconciliation-in-a-spreadsheet-with-a-worked-example",
  "display_title": "How do I perform a bank reconciliation in a spreadsheet, and is there an example or worked layout of a bank reconciliation statement in one?",
  "format": "article-v2",
  "applies_to": {
    "countries": [
      "US"
    ],
    "frameworks": [],
    "tax_year": null,
    "platforms": []
  },
  "general_concept": true,
  "summary": "Build four areas: a tab of bank statement lines, a tab of ledger lines, marking columns beside each, and a separate reconciliation statement. Put both extracts on the statement period and one sign convention, pair lines by hand, by shared reference or by composite key, and classify whatever stays unpaired. The statement adjusts the bank and book balances to one figure, and a difference cell must read 0.00. Save each period as a new file. A worked sheet follows.",
  "body": "## What goes in the workbook, and why keep the areas apart?\n\nSet up one workbook per bank account and statement period, with four areas:\n\n- **Bank tab.** The statement lines sit here exactly as downloaded, plus an Amount column in the sheet's sign convention.\n- **Book tab.** The ledger lines for the same account and dates sit here, plus any lines carried forward unpaired from last period.\n- **Marking area.** Columns to the right of the data on both tabs count possible matches, hold a pair ID and hold the class of any line left unpaired.\n- **Rec tab.** The reconciliation statement sits here with its header, check figures and sign-off.\n\nThe Washington State Auditor's best-practice guide recommends documenting a reconciliation with a schedule showing the comparisons made and the reconciling items in enough detail to enable effective review. Separate areas give you that: the imported data stays as produced, your marks sit beside it, and the statement reads from both. A merged list mixes source figures with your edits, so nobody can tell what was imported or, next period, which lines were still open.\n\nTurn each data area into an Excel table (Home, then Format as Table, in Microsoft's help), name the tables Bank and Book, and give every imported line a Period label for its statement month, such as Apr. Microsoft says the names in structured references adjust whenever you add or remove data from the table, so `=SUM(Book[Amount])` takes in rows added later, while a fixed range such as `=SUM(D2:D40)` silently stops at row 40. In a table formula, `[@Amount]` means the Amount cell on the formula's own row. Paste at least two data rows into each table before typing its formulas; Microsoft warns that formulas entered in a one-row table may give unexpected results when more rows are added.\n\n## How do you get both sets of lines in and make them comparable?\n\n**Statement lines.** Download the account activity for exactly the statement period. Wells Fargo's help, for example, has you confirm the From and To dates and choose Comma Delimited (ASCII, Spreadsheet). If your bank offers only a rendered statement, key the lines in. Take the opening and closing balances from the statement as issued, not from the download.\n\n**Ledger lines.** Export a transaction-level report for the bank account over the same dates. Intuit's help for QuickBooks Online describes a General Ledger report that details the debits and credits for every transaction: add the Credit and Debit columns, use Filter to choose the account, then choose Export/Print and Export to Excel, selecting Enable Editing in Excel if data seems to be missing.\n\n**Cut-off.** Georgia's State Accounting Office policy says a reconciliation should identify the general ledger balance as of the same date as the bank statement. If the statement closes on the 28th, take the ledger balance at the 28th; any other date leaves transactions no reconciling item explains, and you will hunt for an item that does not exist.\n\nBefore any matching, make four fields comparable on both tabs:\n\n- **Dates.** Microsoft notes that imported or pasted data can arrive as text, which will not match a real date; text dates with two-digit years can be converted from Excel's error-checking button (Convert XX to 20XX), and its DATEVALUE function converts most other text dates to a serial number.\n- **Amounts.** Amounts must be plain numbers, with no currency symbols or text.\n- **Sign.** Money in is positive and money out negative throughout: a file with Debit and Credit columns needs an Amount column subtracting one from the other, and a single amount column may need reversing, so check that a deposit you know shows as positive on both tabs.\n- **Reference.** A Ref column on both tabs holds the check or deposit number where the item has one, typed across when the bank buries it in the description.\n\nSkip the sign step and every genuine pair shows as unmatched on both tabs, doubling the apparent reconciling items and hiding the real ones.\n\n## How do you pair items and isolate what is left?\n\nA bank reconciliation guide sheet from the U.S. Justice Department's Office of Justice Programs starts by comparing the two records and marking the items found on both. In a spreadsheet the mark is a pair ID, such as P01, typed on both lines so each mark points to its partner. Choose how pairs are found before you build, because formulas and failures differ:\n\n| Method | Use it when | How it works | What goes wrong |\n|---|---|---|---|\n| Manual marking | A few dozen lines | Type the same pair ID on both lines of each pair | A line is missed or an ID used twice |\n| Shared reference | Both sides carry the check or deposit number | `=XLOOKUP([@Ref],Bank[Ref],Bank[Amount],\"none\")` on the Book tab returns the statement amount for that number | A reused or mistyped number pairs wrongly |\n| Composite key | No shared reference, or many similar items | `=COUNTIFS(Book[Amount],[@Amount],Book[Date],\"<=\"&[@Date],Book[Date],\">=\"&([@Date]-31))` on the Bank tab counts book lines with the same amount dated within the 31 days up to the line's date | Different items share a key and pair falsely, or a pair dated further apart than the window is missed and shows on both sides |\n\nMicrosoft's documentation says XLOOKUP returns the item for the first match it finds, and your if_not_found text when no valid match exists, so a duplicated reference quietly pairs with the first line. COUNTIFS, in Microsoft's words, counts the number of times all criteria are met, which supplies the guard: a Hits column counting lines on the other tab with the line's key, and an Own column counting lines on its own tab with that key. Accept a pair only when both are 1; 0 Hits means nothing matches, and 2 or more on either count means the key is not unique, so pair those lines by eye. Set the window, 31 days above, wider than your checks take to clear; check 1038 below took eight days. On the Book tab the window runs forward: `=COUNTIFS(Bank[Amount],[@Amount],Bank[Date],\">=\"&[@Date],Bank[Date],\"<=\"&([@Date]+31))`.\n\nMicrosoft notes that XLOOKUP is not available in Excel 2016 and Excel 2019; there, key the Hits and Own columns on Ref instead. In another spreadsheet application, check its vendor's help for equivalent table, lookup and protection features.\n\nEvery line left without a pair ID is a reconciling item; give it a class from the next section so the statement can total it. When a pair agrees on everything except amount, give both lines the pair ID, check the source document, and enter the difference on the error line for the side that is wrong.\n\n### What changes with a high volume of small, similar items?\n\nCard settlements are the usual case. Three adjustments keep pairing reliable:\n\n- **Pair at the bank's level.** If the bank shows one deposit per settlement batch and the ledger one line per sale, total the ledger by batch in a small table with Microsoft's SUMIFS, which adds values that meet multiple criteria, as in `=SUMIFS(Book[Amount],Book[Batch],[@Batch])`, and pair the totals.\n- **Key on fields both sides carry.** Use amount and a settlement-date window, plus a batch or trace number when both files have one.\n- **Accept only unique keys.** Equal amounts are common at volume, so ticking by eye and a bare lookup both produce false pairs.\n\n## Which direction should the statement run, and which lines does it need?\n\nThe statement can run in three directions. Pick one and apply every adjustment that way; a sheet that mixes them flips some signs and cannot agree:\n\n| Direction | Opens from | Closing test |\n|---|---|---|\n| Two-sided | Statement balance and ledger balance, each adjusted by its own items | Adjusted bank minus adjusted book is 0.00 |\n| Book to bank | Ledger balance, plus the book-side block as it stands, minus the bank-side block (deposits in transit deducted, outstanding payments added back) | Adjusted ledger minus statement balance is 0.00 |\n| Bank to book | Statement balance, plus the bank-side block, minus the book-side block | Adjusted statement minus ledger balance is 0.00 |\n\nThe Office of Justice Programs sample is two-sided, adjusting both the bank balance and the cash balance. OpenStax's Principles of Accounting states the test: prepared accurately, the reconciliation brings the bank balance and the company balance to the same amount. Georgia's policy uses the book-to-bank form, and the bank-to-book form is its arithmetic mirror. In the worked sheet below, book to bank runs 10,065.63 + (−330.88) − 94.50 = 9,640.25: the ledger balance, plus rows 10 to 12, minus rows 5 to 7. The two-sided form suits a spreadsheet best, because each class sits against the balance it adjusts and the book-side block is the list of entries still to record.\n\nOpenStax also defines the classes: a deposit in transit is on the books but not yet recorded by the bank, an outstanding check is deducted in the company's records but not yet cashed, bank fees and interest reach the bank account before the books, and errors can start with either the business or the bank. Give each class a line, even when its total is 0.00:\n\n| Class | Found as | Adjusts |\n|---|---|---|\n| Deposit in transit | Unpaired money in on the Book tab | Bank balance, added |\n| Outstanding payment | Unpaired check or other payment on the Book tab | Bank balance, deducted |\n| Bank error | A statement line the bank got wrong | Bank balance, corrected |\n| Bank credit | Unpaired money in on the Bank tab, such as interest | Book balance, added |\n| Bank debit | Unpaired money out on the Bank tab, such as a service charge or returned check | Book balance, deducted |\n| Book error | A ledger line recorded wrongly | Book balance, corrected |\n\nHow each class is then handled is its own question.\n\n## What does a complete worked sheet look like?\n\nAll figures are invented. The statement runs April 1 to 30; deposit D-0331 and check 1038 were carried forward from March. Because the sheet is small, its counts key on amount alone; a real sheet adds Ref or a date window as a second criterion.\n\nThe Bank tab (table Bank) holds the statement lines:\n\n| Period | Date | Description | Ref | Amount | Hits | Own | Pair | Class |\n|---|---|---|---|---|---|---|---|---|\n| Apr | 04/02 | Deposit | D-0331 | 900.00 | 1 | 1 | P01 | |\n| Apr | 04/06 | Check | 1038 | -240.00 | 1 | 1 | P02 | |\n| Apr | 04/10 | Deposit | D-0409 | 2,400.00 | 1 | 1 | P03 | |\n| Apr | 04/18 | Check | 1045 | -1,210.00 | 1 | 1 | P04 | |\n| Apr | 04/22 | Returned item | | -310.00 | 0 | 1 | | Bank debit |\n| Apr | 04/30 | Service charge | | -25.00 | 0 | 1 | | Bank debit |\n| Apr | 04/30 | Interest | | 4.12 | 0 | 1 | | Bank credit |\n\nThe Book tab (table Book) holds the carried-forward lines and April's ledger lines:\n\n| Period | Date | Ref | Amount | Hits | Own | Pair | Class | Age |\n|---|---|---|---|---|---|---|---|---|\n| B/F | 03/31 | D-0331 | 900.00 | 1 | 1 | P01 | | 30 |\n| B/F | 03/29 | 1038 | -240.00 | 1 | 1 | P02 | | 32 |\n| Apr | 04/09 | D-0409 | 2,400.00 | 1 | 1 | P03 | | 21 |\n| Apr | 04/16 | 1045 | -1,210.00 | 1 | 1 | P04 | | 14 |\n| Apr | 04/27 | 1047 | -620.00 | 0 | 1 | | Outstanding payment | 3 |\n| Apr | 04/29 | 1049 | -1,135.50 | 0 | 1 | | Outstanding payment | 1 |\n| Apr | 04/30 | D-0430 | 1,850.00 | 0 | 1 | | Deposit in transit | 0 |\n\nThe Book tab's marking formulas follow; the Bank tab uses Hits and Own with Bank and Book swapped:\n\n| Column | Formula |\n|---|---|\n| Hits | `=COUNTIFS(Bank[Amount],[@Amount])` |\n| Own | `=COUNTIFS(Book[Amount],[@Amount])` |\n| Age | `=Rec!$B$3-[@Date]` |\n\nThe Rec tab holds the statement. Every amount carries its sign, so each block is simply added and the deduction rows show negative totals:\n\n| Row | Label in column A | Column B | Formula or source |\n|---|---|---|---|\n| 1 | Account | Operating checking | Typed |\n| 2 | Preparer and date; reviewer and date | | Typed at sign-off |\n| 3 | Statement date | 04/30 | Typed |\n| 4 | Balance per bank statement | 9,640.25 | From the statement as issued |\n| 5 | Add: deposits in transit | 1,850.00 | `=SUMIFS(Book[Amount],Book[Class],\"Deposit in transit\")` |\n| 6 | Deduct: outstanding payments | -1,755.50 | `=SUMIFS(Book[Amount],Book[Class],\"Outstanding payment\")` |\n| 7 | Add or deduct: bank errors | 0.00 | Typed, with a note |\n| 8 | Adjusted bank balance | 9,734.75 | `=SUM(B4:B7)` |\n| 9 | Balance per ledger at the statement date | 10,065.63 | From the ledger report |\n| 10 | Add: bank credits not in the books | 4.12 | `=SUMIFS(Bank[Amount],Bank[Class],\"Bank credit\")` |\n| 11 | Deduct: bank debits not in the books | -335.00 | `=SUMIFS(Bank[Amount],Bank[Class],\"Bank debit\")` |\n| 12 | Add or deduct: book errors | 0.00 | Typed, with a note |\n| 13 | Adjusted book balance | 9,734.75 | `=SUM(B9:B12)` |\n| 14 | Difference | 0.00 | `=B8-B13` |\n| 15 | Statement opening balance | 8,121.13 | From the statement as issued |\n| 16 | Check: statement lines | 0.00 | `=SUMIFS(Bank[Amount],Bank[Period],B20)-(B4-B15)` |\n| 17 | Ledger balance at the last statement date | 8,781.13 | From the ledger report |\n| 18 | Check: ledger lines | 0.00 | `=SUMIFS(Book[Amount],Book[Period],B20)-(B9-B17)` |\n| 19 | Ledger balance at the statement date after recording | 9,734.75 | Ledger report, rerun after recording |\n| 20 | Period label | Apr | Typed, matching this period's lines |\n\nWorked in order, the summary block runs:\n\n1. Start from the statement balance, 9,640.25, and add the deposit in transit: 9,640.25 + 1,850.00 = 11,490.25.\n2. Deduct checks 1047 and 1049, 620.00 + 1,135.50 = 1,755.50: 11,490.25 − 1,755.50 = 9,734.75. With no bank errors, that is the adjusted bank balance.\n3. Start from the ledger balance, 10,065.63, and add the interest: 10,065.63 + 4.12 = 10,069.75.\n4. Deduct the returned item and the service charge, 310.00 + 25.00 = 335.00: 10,069.75 − 335.00 = 9,734.75. With no book errors, that is the adjusted book balance.\n5. Take the difference: 9,734.75 − 9,734.75 = 0.00.\n\nThe check figures agree too: April's statement lines total 1,519.12 (9,640.25 − 8,121.13) and April's ledger lines total 1,284.50 (10,065.63 − 8,781.13). Keep rows 1 to 14 on one printable page, with each tab's unpaired lines behind it, so a lender or accountant can receive the statement without the working tabs.\n\n## What controls must you add because a spreadsheet has none?\n\nThe Washington State Auditor's guide recommends adequate security controls over any spreadsheet used to reconcile, naming passwords, tracked changes, audit trails and check figures. The five habits below apply two of those, passwords and check figures; they give no tracked changes or audit trail, and the signed PDF kept apart from the working file shows only what was approved:\n\n- **A new file every period.** Save each period under a name carrying the account and statement date, and never overwrite last period's file to make this one: it is the only evidence the reconciliation was done and the only record of what was open. The Office of Justice Programs guide sheet, written for federal grant recipients, says reconciliation documentation should be saved so it is available for audit.\n- **A named preparer and reviewer.** Enter who prepared the sheet and when in row 2. The Washington State Auditor's guide says a supervisory review should always be documented by signature and date.\n- **A locked finished period.** Protect the finished tabs through Review, then Protect Sheet, and set a password, which Microsoft says prevents other people from removing the protection. Microsoft also says worksheet protection isn't intended as a security feature, so keep a PDF or printout of the signed statement, with the bank's statement, apart from the working file.\n- **Ranges that grow.** Keep every total on table references and read rows 16 and 18 before signing; a line dropped from a range shows up there.\n- **No balancing line.** If row 14 is not 0.00, leave it showing; a typed line forcing it to zero makes the sheet look finished while hiding what the reconciliation exists to find. Finding the cause is a separate question.\n\n## How do you carry outstanding items into next period's sheet?\n\nCalifornia's Department of Finance bank reconciliation procedure begins each month by carrying the prior month's ending balance in as the beginning balance and carrying any outstanding reconciling items into the current month. In the workbook, that takes four steps:\n\n1. Save the finished file under the new period's name, and leave the old file untouched from then on.\n2. In the new file, keep every unpaired Book-tab line with its original date and set its Period to B/F. Keep an unpaired Bank-tab line too, unless its ledger entry has since been posted dated on or before the old statement date.\n3. Delete the paired lines, clear the Pair and Class columns, paste in the new statement and ledger lines, and label the pasted lines with the new month.\n4. Type the new balances in rows 4 and 9, the opening figures in rows 15 and 17 and the new month in row 20, then confirm row 15 equals last period's row 4 and row 17 equals last period's row 19.\n\nIn the example, May opens with D-0430, 1047 and 1049 as B/F lines, and Age keeps counting from their original dates, so an item that never clears becomes visible instead of being carried silently. The Washington State Auditor's guide says an item that cannot be identified should be isolated and observed during the next reconciliation. What to do about a stale check is a separate question.\n\nOn a first-ever reconciliation there is no carried list: export the ledger from an earlier start date so older items clearing on this statement have lines to pair with, label ledger lines dated before the statement period B/F, and examine any older line left unpaired before listing it as outstanding.\n\n## How do you check the finished sheet before signing it?\n\nBefore signing, work through these checks in order:\n\n1. Confirm rows 16 and 18 read 0.00, so no line is missing from either tab.\n2. Compare rows 4 and 15 with the statement as issued, not with the download. The reviewer does the same: the Washington State Auditor's guide says reviewers should obtain original bank statements or view-only access to online statements.\n3. Run the ledger balance at the statement date again and compare it with row 9.\n4. Before accepting the classes, confirm no unpaired Bank-tab line shares an amount or Ref with an unpaired Book-tab line; if one does, check both against the source documents.\n5. Add each class's unpaired lines by hand and compare the totals with rows 5, 6, 10 and 11.\n6. Confirm every pair ID appears on both tabs, every unpaired line has a class and every error entry has a note.\n7. Confirm row 14 reads 0.00 with no typed balancing line, then sign row 2 and pass the file to the reviewer.\n\n## What changes when the ledger lives in accounting software?\n\nThe spreadsheet proves only that the statement balance and the ledger balance at one date differ by the listed items. It records nothing in the software, whose own reconciliation status stays unchanged; reconciling inside the software is a separate question.\n\nThe book-side block lists the entries still to make: OpenStax notes that transactions the bank knows about but the company does not must be journalized. Record them. If you date them on or before the statement date, rerun the ledger balance at that date and confirm it equals the adjusted book balance, 9,734.75 in the example; if you date them in the next period, it stays at row 9's figure and the Bank-tab lines carry forward under roll-forward step 2. Either way, enter the rerun balance in row 19.\n\nAt the start of each period, compare the ledger balance the software now reports for the last statement date with row 19 of last period's sheet. If it has moved, a transaction in a reconciled period was posted or edited; find it before building the new sheet.",
  "sources": [
    {
      "id": "REF::1",
      "url": "https://sao.wa.gov/sites/default/files/2023-05/Best-Practices-for-Bank-Reconciliations.pdf",
      "title": "Best Practices for Bank Reconciliations",
      "publisher": "Office of the Washington State Auditor",
      "published": "January 2020",
      "retrieved_at": "2026-09-25T00:24:00+00:00",
      "sha256": "5709d5bf609fcfe14c971b3ddcde157c638b68155a336a5d2bfdc229e40dbb35",
      "supports": [
        "C1",
        "C7",
        "C31",
        "C32",
        "C34",
        "C39"
      ]
    },
    {
      "id": "REF::2",
      "url": "https://support.microsoft.com/en-us/office/overview-of-excel-tables-7ab0bb7d-3a9e-4b56-a3c9-6c94334e492c",
      "title": "Overview of Excel tables",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:24:01+00:00",
      "sha256": "42d1d601677543d499275583795d62c9e32d7a07a6ad839c2ba5898e9f8045d9",
      "supports": [
        "C2"
      ]
    },
    {
      "id": "REF::3",
      "url": "https://support.microsoft.com/en-us/office/using-structured-references-with-excel-tables-f5ed2452-2337-4f71-bed3-c8ae6d2b276e",
      "title": "Using structured references with Excel tables",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:24:02+00:00",
      "sha256": "6efad4271cf3bb21fbbc9b183a17964896aa63437df9ce8c8deb301984e96c2c",
      "supports": [
        "C3",
        "C4",
        "C41",
        "C42"
      ]
    },
    {
      "id": "REF::4",
      "url": "https://www.wellsfargo.com/help/online-banking/activity-faqs/",
      "title": "Account Activity Questions",
      "publisher": "Wells Fargo",
      "published": "undated",
      "retrieved_at": "2026-09-25T00:24:02+00:00",
      "sha256": "c91c64258bac332ae1eae7b23fa2d34fa0922b71c323ee920acb9a75ce2e68d0",
      "supports": [
        "C5",
        "C6"
      ]
    },
    {
      "id": "REF::5",
      "url": "https://quickbooks.intuit.com/learn-support/en-us/help-article/profit-loss-reports/create-report-shows-debits-credits-transaction/L1zvqNX0e_US_en_US",
      "title": "Run a ledger report that shows debits and credits for each transaction",
      "publisher": "Intuit Inc.",
      "published": "last updated 8/3/2026",
      "retrieved_at": "2026-09-25T00:26:04+00:00",
      "sha256": "5893e300985433be894715de3a59ed14a262af6b4d753ba4fb1cc8f642ec0403",
      "supports": [
        "C8",
        "C9",
        "C10"
      ]
    },
    {
      "id": "REF::6",
      "url": "https://quickbooks.intuit.com/learn-support/en-us/help-article/report-management/export-reports-excel-quickbooks-online/L7iAoP97n_US_en_US",
      "title": "Export reports to Excel",
      "publisher": "Intuit Inc.",
      "published": "last updated 8/4/2026",
      "retrieved_at": "2026-09-25T00:28:26+00:00",
      "sha256": "5afc46f6e5bfc6ed71a99616b4440a00dc3015d82423cfd0cca8bdc054fc442c",
      "supports": [
        "C11",
        "C12"
      ]
    },
    {
      "id": "REF::7",
      "url": "https://sao.georgia.gov/document/publication/bpbankreconciliationsaofinal08092018pdf/download",
      "title": "Statewide Business Process Policy & Procedure: Bank Reconciliation",
      "publisher": "State of Georgia, State Accounting Office",
      "published": "effective 03/13/2007, revised 08/09/2018",
      "retrieved_at": "2026-09-25T00:28:47+00:00",
      "sha256": "8677d38b84eeaa02b040db4bba913a6d0fcba4a3ca624bf8e06dcf853e4d6b10",
      "supports": [
        "C13",
        "C25"
      ]
    },
    {
      "id": "REF::8",
      "url": "https://support.microsoft.com/en-us/office/convert-dates-stored-as-text-to-dates-8df7663e-98e6-4295-96e4-32a67ec0a680",
      "title": "Convert dates stored as text to dates",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:28:48+00:00",
      "sha256": "cd423bc9bc5e713f73c272d65261e57aeff8ee21c0669f7ba9b1abfa1d08f5cf",
      "supports": [
        "C14",
        "C15",
        "C43",
        "C44",
        "C45"
      ]
    },
    {
      "id": "REF::9",
      "url": "https://www.ojp.gov/tfsc/ojp_tfsc_guide_sheet_bank_reconciliation_508",
      "title": "Bank Reconciliation Guide Sheet",
      "publisher": "U.S. Department of Justice, Office of Justice Programs Territories Financial Support Center",
      "published": "undated",
      "retrieved_at": "2026-09-25T00:28:49+00:00",
      "sha256": "cf26d4dca3ab980ffa370642d8e85d3263c8fcfa6ab4f06fbeb0e692954889a9",
      "supports": [
        "C16",
        "C22",
        "C23",
        "C33",
        "C51"
      ]
    },
    {
      "id": "REF::10",
      "url": "https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929",
      "title": "XLOOKUP function",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:28:50+00:00",
      "sha256": "bec85995cd5e75f7633fe54e50a5254b869c5057984527416331d21c736e62a4",
      "supports": [
        "C17",
        "C18",
        "C48"
      ]
    },
    {
      "id": "REF::11",
      "url": "https://support.microsoft.com/en-us/office/countifs-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842",
      "title": "COUNTIFS function",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:28:51+00:00",
      "sha256": "30f5bbc32bb840fee932ac834bb50dd3138d173bdac803895851364e0aa0bf85",
      "supports": [
        "C19",
        "C49",
        "C50"
      ]
    },
    {
      "id": "REF::12",
      "url": "https://support.microsoft.com/en-us/office/sumifs-function-c9e748f5-7ea7-455d-9406-611cebce642b",
      "title": "SUMIFS function",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:28:52+00:00",
      "sha256": "bde6b924e6fbecc00b063dfc5b11c386648e306e77255c0e1c7e1d788ffb8ed2",
      "supports": [
        "C21"
      ]
    },
    {
      "id": "REF::13",
      "url": "https://openstax.org/books/principles-financial-accounting/pages/8-6-define-the-purpose-of-a-bank-reconciliation-and-prepare-a-bank-reconciliation-and-its-associated-journal-entries",
      "title": "Principles of Accounting, Volume 1: Financial Accounting, 8.6 Define the Purpose of a Bank Reconciliation, and Prepare a Bank Reconciliation and Its Associated Journal Entries",
      "publisher": "OpenStax, Rice University",
      "published": "publication date Apr 11, 2019",
      "retrieved_at": "2026-09-25T00:28:52+00:00",
      "sha256": "f89bb2f1b63d48868b8d1a0dbdd0bc8e58fae30d518f9f190b4fe6477e6d717b",
      "supports": [
        "C24",
        "C26",
        "C27",
        "C28",
        "C29",
        "C30",
        "C40"
      ]
    },
    {
      "id": "REF::14",
      "url": "https://support.microsoft.com/en-us/office/protect-a-worksheet-3179efdb-1285-4d49-a9c3-f4ca36276de6",
      "title": "Protect a worksheet",
      "publisher": "Microsoft",
      "published": "undated support article (Excel for Microsoft 365)",
      "retrieved_at": "2026-09-25T00:28:53+00:00",
      "sha256": "7e6e0038dcfe913db7915c5f84e591e8eed4e414f319ea61bb65b89687527c0a",
      "supports": [
        "C35",
        "C46",
        "C47"
      ]
    },
    {
      "id": "REF::15",
      "url": "https://dof.ca.gov/media/docs/accounting/fiscal-resources-for-accounting/Bank-Reconciliation-Procedure.pdf",
      "title": "Bank Reconciliation Procedure",
      "publisher": "California Department of Finance",
      "published": "undated",
      "retrieved_at": "2026-09-25T00:28:54+00:00",
      "sha256": "3fbaf05e4db2ce6e83349c1adce57e42d71b488dca47a4601e73850a1b72c7a8",
      "supports": [
        "C37",
        "C38"
      ]
    }
  ],
  "related": [
    {
      "question_id": "CG-P1B-002",
      "slug": "what-is-a-bank-reconciliation-and-how-to-tie-the-books-to-the-bank",
      "display_title": "What is a bank reconciliation, who prepares it, and how do I tie the books to the bank (with a worked example)?"
    },
    {
      "question_id": "CG-P1B-FULL-064",
      "slug": "how-to-automate-a-bank-reconciliation-with-a-spreadsheet-or-script",
      "display_title": "How do I automate a bank reconciliation outside my accounting software, using a spreadsheet with macros or a scripting language?"
    },
    {
      "question_id": "CG-P1B-FULL-113",
      "slug": "what-is-a-four-column-bank-reconciliation-and-how-is-it-prepared",
      "display_title": "What is a four-column bank reconciliation, how is it prepared, and what does a worked example of one look like?"
    },
    {
      "question_id": "CG-P1B-FULL-002",
      "slug": "why-a-bank-reconciliation-does-not-balance-and-how-to-find-the-difference",
      "display_title": "Why doesn't my bank reconciliation balance or match the general ledger, and how do I find and fix the difference?"
    }
  ],
  "review_class": "routine",
  "review_class_trigger": null,
  "provenance": {
    "author_model": "claude-opus-5-5",
    "reviewer_model": "claude-opus-5-5",
    "review_verdict": "ACCEPT",
    "review_source": "closure",
    "review_verdict_on_sha256": "96b4a4ae65850e46ec707ea434c3d910ab5f197b56688e0654170b4e17b9d872",
    "editorial_disposition": "ACCEPT",
    "corrections": 1,
    "approved_by": null,
    "approved_at": null,
    "article_sha256": "96b4a4ae65850e46ec707ea434c3d910ab5f197b56688e0654170b4e17b9d872",
    "source_map_sha256": "08d682c131e7effb8f60647c4aa14ffbfa4046877192b1be659fef5db44a9361",
    "transform_sha256": "a34f073f1062ff3521bcf6178dd4a24d93b698544fbc0706a431004b2ce78989"
  },
  "offer": "ask",
  "offer_id": null,
  "sample_target_id": null,
  "datePublished": "2026-09-25T07:07:32Z",
  "reviewed_at": "2026-09-25T07:07:32Z",
  "content_sha": "a1440240deb43f53278fe37050479f5c8810a18033a33e50ff64c6ebef8e44c6",
  "release": "2.5.0",
  "slug_provenance": "minted at first publication",
  "question_text": "How do I perform a bank reconciliation in a spreadsheet, and is there an example or worked layout of a bank reconciliation statement in one?",
  "jsonld_types": [
    "Article"
  ],
  "related_question_ids": [
    "CG-P1B-002",
    "CG-P1B-FULL-073",
    "CG-P1B-FULL-064",
    "CG-P1B-FULL-113",
    "CG-P1B-FULL-002"
  ],
  "aliases": [],
  "alias_provenance": []
}
