Excel Workbook: What It Is, How It Works, and Every Feature Explained

An Excel workbook is the .xlsx file that holds your worksheets, formulas, charts, and macros. Learn every feature with hands-on examples.

Excel Workbook: What It Is, How It Works, and Every Feature Explained

Open Microsoft Excel and you don't open a "spreadsheet." You open a workbook. That distinction matters more than most people realize, and it's the reason so many beginners get tripped up when they try to share files, link sheets, or recover lost data. A workbook is the container. Worksheets are the pages inside. Everything else — formulas, charts, pivot tables, macros — lives within that container.

This guide walks through what an Excel workbook actually is, how it differs from a worksheet, how the .xlsx file format works under the hood, and how to use every workbook-level feature Microsoft has shipped over the past twenty years. We'll cover sharing, protecting, merging, recovering, and templating workbooks, plus the modern co-authoring features that turned Excel into a real-time collaborative tool.

If you're studying for the Microsoft 365 Excel exam or the MOS certification, this is the foundation everything else builds on. Get the workbook model right and the rest of Excel makes sense. Get it wrong and you'll fight the software for years.

What Is an Excel Workbook?

An Excel workbook is a single file — typically with the .xlsx extension — that stores one or more worksheets along with every supporting object you've added: charts, named ranges, data connections, pivot tables, VBA modules, and conditional formatting rules. Think of it as a three-ring binder. The binder itself is the workbook. Each page in the binder is a worksheet. You can have just one page, or you can stuff in 255 of them (Excel's old limit was 255 sheets per workbook; modern versions are limited by available memory).

When you click File > New > Blank Workbook, Excel creates a fresh container with one empty worksheet called Sheet1. From there you add data, formulas, and additional sheets as your project grows. The workbook is what you save, share, and email. Everything you build sits inside it.

The terminology gets fuzzy because people use "Excel file," "spreadsheet," and "workbook" interchangeably. Technically a spreadsheet is the conceptual grid of rows and columns — what Excel calls a worksheet. The workbook is the file that holds those worksheets. When someone says "send me the spreadsheet," they almost always mean send the workbook.

Excel Workbook by the Numbers

1,048,576Maximum rows per worksheet
16,384Maximum columns per worksheet
255+Worksheets per workbook (memory-limited)
.xlsxDefault modern file extension

Workbook vs Worksheet: The Critical Distinction

The confusion between workbook and worksheet is so common that Microsoft built error messages around it. Here's the simple rule: a worksheet is one tab; a workbook is the whole file. You can see this immediately at the bottom of the Excel window — those little tabs labeled Sheet1, Sheet2, Sheet3 are worksheets. The .xlsx file containing all of them is the workbook.

This matters for formulas. A reference like =A1 points to a cell on the current worksheet. =Sheet2!A1 points to cell A1 on the worksheet named Sheet2, but within the same workbook. To reference a cell in a different workbook you need the full path: ='[Budget.xlsx]Sheet1'!A1. Get this wrong and you'll see #REF! errors or broken links that won't update.

It also matters for sharing. Sharing a worksheet isn't really a thing — Excel shares workbooks. If you want one colleague to see only the Q1 tab and not the Q2 tab, you either need to split the workbook into two files or use sheet-level protection. The same applies to copying: when you copy a sheet in Excel, you're moving it from one workbook to another, not creating a new workbook.

The .xlsx File Format Under the Hood

Here's something most Excel users never realize: a .xlsx file is actually a ZIP archive containing XML files. Rename any .xlsx to .zip and you can crack it open with any unzip tool. Inside you'll find folders like xl/, xl/worksheets/, xl/sharedStrings.xml, and docProps/. Each worksheet is its own XML file. Shared strings are deduplicated for efficiency. Charts are stored as separate XML files with relationships back to the data ranges.

This Open Office XML format replaced the old binary .xls format in 2007. It's a public standard (ECMA-376, ISO/IEC 29500), which is why Google Sheets, LibreOffice Calc, and Apple Numbers can all read .xlsx files reliably. The older .xls format was binary, proprietary, and capped at 65,536 rows per sheet. The .xlsx format supports 1,048,576 rows and 16,384 columns — a thousand times more capacity.

You'll also encounter .xlsm files. Same format as .xlsx, but with the addition of macros and VBA code. Microsoft split the two because macros are a security risk; isolating macro-enabled files into their own extension means users see a warning before opening anything that could run code. The Excel Developer tab is where you build and edit those macros.

Microsoft Excel - Microsoft Excel certification study resource

Workbook vs Worksheet at a Glance

A workbook is the file — the .xlsx container that you save, share, and email. A worksheet is one tab inside that file. Excel lets you stuff hundreds of worksheets into a single workbook, with formulas, charts, and macros all sharing the workbook-level scope.

Whenever you see the phrase "Excel file" in documentation, mentally translate it to "workbook." Whenever you see "spreadsheet," check whether the author means the file as a whole or a single sheet inside it — that distinction changes how every menu command behaves.

The Four Workbook File Formats

.xlsx

Standard Open Office XML format. Default since Excel 2007. Stores data, formulas, charts. No macros allowed.

.xlsm

Macro-enabled workbook. Same as .xlsx but with embedded VBA code. Triggers a security warning on open.

.xltx

Workbook template. Opens as a new file based on the template, leaving the original untouched.

.xls

Legacy binary format from Excel 97-2003. Capped at 65,536 rows. Use only for backward compatibility.

Creating and Saving Workbooks

Excel offers four ways to create a workbook. The keyboard shortcut Ctrl+N opens a fresh blank workbook in milliseconds. The File menu has New > Blank Workbook for the same result, plus a gallery of templates covering budgets, calendars, invoices, and analytics dashboards. You can also create a workbook by opening an existing file and immediately doing File > Save As, which gives you a fresh copy you can modify without touching the original.

Saving works the same as in any Office app. Ctrl+S saves; F12 brings up Save As; the AutoSave toggle in the top-left corner saves continuously when the workbook lives on OneDrive or SharePoint. The Save As dialog also lets you change the file type — useful when you need to downsave to .xls for someone running Excel 2003, or export to .csv, .pdf, or .ods for non-Excel users.

File naming matters more than people think. Special characters like / \ ? * : | < > " are banned by Windows. Long paths above 260 characters can break formulas that reference the workbook. And spaces in filenames force you to wrap path strings in single quotes inside formulas. Names like Q1-budget-2026.xlsx are safe; names like Q1/Budget & Forecast (Final).xlsx will cause problems eventually.

Working With Multiple Worksheets

A workbook becomes useful the moment you add a second sheet. Right-click the Sheet1 tab and choose Insert > Worksheet, or click the + button next to the existing tabs. You can rename a tab by double-clicking it, color-code tabs by right-clicking and choosing Tab Color, and reorder sheets by dragging tabs left or right. Holding Ctrl while dragging makes a duplicate instead of moving.

Multi-sheet workbooks unlock 3D references — formulas that span sheets. =SUM(Sheet1:Sheet12!B2) adds up cell B2 across twelve sheets. This is how monthly budget templates aggregate yearly totals: each month gets its own sheet, and a summary sheet pulls them all together with a single formula. The same syntax works for AVERAGE, MIN, MAX, and most other aggregation functions.

Group editing is the lesser-known power feature. Click a sheet tab, hold Shift, and click another tab — every sheet between them is now selected as a group. Any cell you edit, format you apply, or formula you type now happens on every sheet in the group simultaneously. Perfect for setting up identical templates across twelve months or four quarters. Just don't forget to ungroup when you're done, or you'll accidentally trash data on every sheet at once.

Workbook Templates: Start Faster, Make Fewer Mistakes

Excel ships with hundreds of pre-built workbook templates — budgets, gantt charts, invoices, expense trackers, calendars, loan amortization schedules. Open File > New and browse the gallery, or search the online template library for industry-specific layouts. Templates aren't just data; they include pre-built formulas, conditional formatting, data validation rules, and chart objects. You skip the setup and jump straight to entering your numbers.

You can also save your own workbook as a template. File > Save As, then change the file type to Excel Template (.xltx). Save it to the default templates folder and it'll appear in the New gallery under "Personal." This is how teams standardize reporting: one master template, distributed to everyone, ensures every monthly report has the same structure, formulas, and formatting.

Macro-enabled templates use the .xltm extension. Same idea but with VBA code attached. Useful for templates that need automation — say, a budget template that auto-generates a summary tab when you click a button. Just remember macro-enabled files trigger security warnings on first open, so trust settings need to be configured if you're rolling this out across an organization.

Sharing Workbooks: Co-Authoring and Legacy Methods

How you share a workbook depends on which version of Excel you and your team are using. The modern way is co-authoring through OneDrive or SharePoint. Save the workbook to a cloud location, click Share in the top-right, send the link, and multiple people can edit at once with their cursors visible in different colors. Changes sync in real time. AutoSave keeps the file backed up continuously. This works in Excel 2019+, Excel 365, and Excel for the Web.

The old way — pre-2019 — used a feature called Shared Workbooks, accessed through Review > Share Workbook. It allowed multiple people to edit a workbook stored on a shared network drive, but it was buggy, didn't support tables or charts, and would corrupt files on conflict. Microsoft has deprecated it but kept the feature available for legacy compatibility. If you need it, enable it through Excel Options > Quick Access Toolbar > All Commands > Share Workbook (Legacy).

For one-way sharing — when you want others to view but not edit — the cleanest approach is Save As PDF, or use sheet protection to lock specific tabs. You can also email a workbook directly from Excel via File > Share > Email, which attaches the file as an attachment, a PDF, or an XPS document. For finer-grained access control, OneDrive's sharing settings let you grant view-only, comment-only, or full-edit permissions per recipient.

Excel Spreadsheet - Microsoft Excel certification study resource

Common Workbook Tasks

Press Ctrl+N for a blank workbook, or go to File > New and pick a template. Save with Ctrl+S, choosing your location and file format. The default .xlsx works for any modern version of Excel.

Protecting Workbooks With Passwords

Workbook protection in Excel has two layers. Workbook-level protection prevents users from adding, deleting, hiding, or renaming sheets — but doesn't stop them from editing the data inside existing sheets. Worksheet-level protection locks the cells themselves. You typically apply both for full lockdown.

To protect the workbook structure: Review > Protect Workbook, set a password (or leave it blank for no password), check Structure, and click OK. Now sheet tabs can't be moved, renamed, or hidden without the password. To protect individual sheets: Review > Protect Sheet, set a password, and choose which actions remain allowed. To protect the entire file from being opened at all: File > Info > Protect Workbook > Encrypt With Password.

Forgot the password? Workbook structure passwords are weak and can usually be removed by editing the XML inside the .xlsx file directly. File-open passwords (encryption) are strong — AES-256 in modern Excel — and effectively unbreakable without the password. This is why password recovery tools work on some passwords but not others. If you've lost a structure password, see our guide on how to recover Excel documents. If you've lost an encryption password, accept that the file is gone.

Merging and Combining Workbooks

Combining data from multiple workbooks is one of the most common real-world tasks. The traditional method is manual: open each source workbook, copy the relevant ranges, and paste them into a master workbook. Slow, error-prone, and breaks the moment source data changes.

Modern Excel has three better options. Power Query (Data > Get Data > From File > From Folder) lets you point Excel at a folder of similar workbooks and automatically appends them into one combined table. When new files are added to the folder, a single Refresh updates the master. This is the best approach for monthly reports, regional sales files, or any recurring consolidation work.

The Consolidate tool (Data > Consolidate) is the older approach. It aggregates ranges from multiple workbooks using SUM, COUNT, AVERAGE, or other functions. Less flexible than Power Query but built into every version of Excel back to 2003. Useful for quick totals when you don't need ongoing refresh.

For full programmatic merging, VBA macros can loop through every file in a folder, copy specific sheets, and paste them into a target workbook. This is overkill for one-off jobs but invaluable when you're consolidating hundreds of files on a schedule. The macro recorder can capture the basic steps, which you then edit to add the loop logic.

Workbook Hygiene Checklist Before Sharing

  • Run File > Info > Inspect Document to remove every hidden sheet, embedded comment, and personal metadata field that Excel automatically attaches when you save
  • Run File > Info > Check Accessibility to surface missing alt text on images, unlabeled tables, low-contrast cells, and other screen-reader blockers
  • Confirm the workbook is saved in the correct file format for your audience — .xlsx for normal use, .xlsm only if it must run macros, .xls only for Excel 2003 compatibility
  • Press F9 to force a full recalculation and verify every formula returns the expected value without #REF!, #NAME?, or #VALUE! errors
  • Open Data > Edit Links to inspect every external workbook reference and either repoint, update, or break links that point to files the recipient won't have
  • Apply workbook structure protection (Review > Protect Workbook) if recipients should not add, delete, hide, or rename worksheets
  • Use a sensible filename without slashes, colons, asterisks, or other characters Windows treats as path delimiters
  • Save a backup copy under a date-stamped name before sending so you can roll back if recipients introduce destructive edits
Excellence Playa Mujeres - Microsoft Excel certification study resource

Recovering Lost or Corrupted Workbooks

Excel has saved more lost work than any other Office app, mostly through AutoRecover. By default, Excel saves a recovery snapshot of every open workbook every ten minutes. When Excel crashes and restarts, those snapshots appear in the Document Recovery pane on the left. You pick the most recent version and continue.

To check or change AutoRecover settings: File > Options > Save. Adjust the interval (set it to 5 minutes for safer recovery), confirm the AutoRecover location, and enable "Keep the last AutoRecovered version if I close without saving." That last checkbox is the one that's saved millions of hours of work — it means even if you accidentally hit Don't Save, there's still a recovery file you can open from File > Info > Manage Workbook > Recover Unsaved Workbooks.

For corrupted .xlsx files that refuse to open, Excel has a built-in repair mode. File > Open, browse to the corrupted file, click the dropdown arrow on the Open button, and choose Open and Repair. Excel will attempt to recover the data; if the repair succeeds but some content is lost, you'll get a report showing what was salvaged. For deeper recovery, see our complete guide on recovering Excel files.

Workbook-Level Features: Names, Connections, and Themes

Some features live at the workbook level, not the worksheet level. Named ranges, by default, are workbook-scoped — meaning a name like "TaxRate" defined once is accessible from every sheet in the workbook. You can also create sheet-scoped names if you want the same name reused on different sheets with different values, but workbook scope is the default and usually the right choice.

Data connections also live at the workbook level. When you import data from a SQL database, a web page, or another workbook via Power Query, the connection metadata is stored in the workbook itself. Refresh the connection from any sheet and it updates the data wherever it appears. Connections survive Save and reload, so the next person who opens the workbook can refresh the same data without setting up the import again.

Themes — the combination of colors, fonts, and effects that give your workbook a consistent look — apply to the entire workbook. Page Layout > Themes lets you switch the whole visual style with one click. Custom themes can be saved and shared across files. This is how organizations maintain brand consistency across dozens of reports without manually formatting every chart.

Built-In Workbook Inspection Tools

Before sharing a workbook outside your team, you should inspect it for hidden data, personal information, and compatibility issues. File > Info > Check for Issues offers three inspectors. Inspect Document finds and removes comments, hidden sheets, document properties, headers/footers, and any personal metadata Excel embedded automatically. Check Accessibility flags problems for users with screen readers — missing alt text on images, unlabeled tables, low-contrast colors. Check Compatibility warns you if features you're using won't work in older versions of Excel.

These inspections matter most for public or regulatory submissions. A workbook you email to a client could expose the names of every editor who touched it, internal review comments, and hidden sheets containing draft calculations. Running Inspect Document and removing flagged items scrubs the file before it goes out. For repeat senders, set Excel to inspect automatically on save via File > Options > Trust Center > Trust Center Settings > Privacy Options.

How Excel Workbook Skills Show Up on Tests

If you're studying for the MOS Excel certification, MOS Excel Expert, or any office-skills assessment, workbook-level questions are guaranteed. Expect prompts like: "Create a new workbook based on the Loan Amortization template." "Save this workbook as a macro-enabled template." "Inspect this workbook and remove all hidden sheets." "Protect the workbook structure with password Excel2026." "Share this workbook for co-authoring." These aren't trick questions — they test whether you know the menu paths and understand the difference between workbook and worksheet actions.

Free practice questions covering exactly these tasks are available in our Excel certification practice test. Run through them once before sitting any office-skills exam — most failed attempts come from candidates who memorized formulas but never practiced the file-management chores graded heavily on the test.

Final Thoughts

The Excel workbook is the unit Microsoft built the entire product around. Every formula, every chart, every macro lives inside a workbook. Master the workbook layer — sheets, templates, sharing, protection, recovery — and the rest of Excel is just details. Skip it, and you'll spend years confused about why your spreadsheet won't share or your Excel file lost data after a crash.

Start with the basics. Open a fresh workbook, add three sheets, link them with a 3D formula, protect the structure with a password, save it as a template, and recover it after a crash. Once you've done each of those at least once, you understand workbooks better than 90% of office workers.

Workbook-Level Co-Authoring: Worth It?

Pros
  • +Real-time multi-user editing — see colleagues' cursors move as they type
  • +AutoSave eliminates lost work from crashes or forgotten saves
  • +No more emailed copies, version conflicts, or 'final-final-v3' filenames
  • +Version history lets you roll back to any prior state with one click
Cons
  • Requires OneDrive or SharePoint — won't work on local network drives
  • Some features (advanced macros, certain pivot operations) lock during co-authoring
  • Slow internet causes sync delays and momentary cell freezes
  • Older Excel versions (2016 and earlier) can't fully co-author with newer files

Five Workbook Operations Every Excel User Should Practice

3D Reference Across Sheets

Type =SUM(Jan:Dec!B5) to add the value in cell B5 across twelve monthly sheets. This single formula is the backbone of nearly every yearly summary template in finance, accounting, and operations dashboards.

Save As Excel Template (.xltx)

Build a workbook the way you want it, then choose File > Save As and switch the file type to Excel Template. The next time you open File > New, your template appears under the Personal tab and clicking it spawns a fresh untitled copy.

Inspect Document Before Sending

File > Info > Check for Issues > Inspect Document scans for hidden sheets, embedded comments, personal metadata, and headers/footers. Run this before emailing any workbook outside your team to avoid leaking draft data or editor names.

Encrypt With Password

File > Info > Protect Workbook > Encrypt With Password applies AES-256 encryption to the entire file. Without the password, the workbook simply will not open. Use this for confidential financial models, HR data, or anything regulated by compliance rules.

Recover Unsaved Workbooks

File > Info > Manage Workbook > Recover Unsaved Workbooks lists every AutoRecover snapshot Excel kept after crashes or accidental Don't Save clicks. Snapshots persist for four days by default, so even yesterday's lost workbook is usually recoverable.

Excel Workbook Questions and Answers

About the Author

James R. HargroveJD, LLM

Attorney & Bar Exam Preparation Specialist

Yale Law School

James R. Hargrove is a practicing attorney and legal educator with a Juris Doctor from Yale Law School and an LLM in Constitutional Law. With over a decade of experience coaching bar exam candidates across multiple jurisdictions, he specializes in MBE strategy, state-specific essay preparation, and multistate performance test techniques.