Excel Practice Test

โ–ถ

Tracking stock with paper notebooks or a half-remembered spreadsheet usually ends one way: missing units, overstock, and a manager asking why nothing reconciles. An Excel inventory template fixes that. You get structured columns, formulas that update on the fly, and reorder alerts that nudge you before shelves empty. Whether you run a small online store, a warehouse, or a stockroom for a clinic, the same skeleton works. Drop in your SKUs, set min and max thresholds, and let conditional formatting do the screaming. No more guessing, no more midnight stock counts.

This guide walks through building one from scratch, plus how to adapt free templates without breaking the math. You will see which columns matter, how SUMIF and VLOOKUP carry the load, and where a pivot table beats a dashboard chart. We will also flag the small things that wreck beginners: merged cells, mixed data types, and that one column nobody bothered to format as a number. By the end, you should have a working file you can hand to a coworker without a 20-minute walkthrough.

First, a quick definition. An inventory template is a pre-built workbook with sheets, columns, and formulas designed to track items, quantities, and movement. Templates range from a single sheet (think 200 SKUs, one location) to multi-sheet beasts with separate tabs for purchase orders, receiving, and audits. Microsoft ships a few decent ones in the New menu. ExcelJet, Vertex42, and Smartsheet host more. Pick a starting point that matches your scale. Too big and you spend hours deleting columns; too small and you outgrow it in a week.

What columns do you actually need? Start with the essentials: SKU, item name, category, quantity on hand, reorder level, unit cost, and supplier. That covers 80% of small-business use cases. Add location if you store items in multiple bins or rooms. Add expiration date for perishables or pharmaceuticals. Add a notes column โ€” yes, really โ€” because someone will need to flag a damaged batch, and a margin scribble is faster than a separate ticket. Keep one row per SKU. Do not merge cells. Ever.

SKUs are the backbone. Give every distinct item a unique identifier and never reuse codes. A simple format like CAT-001 (category prefix plus sequence) works fine. Avoid spaces and special characters; they break formulas and barcode scanners. If you sell variants โ€” a red shirt in size M and L โ€” give each variant its own SKU. Trying to track variants in one row with a quantity column for each size leads to misery. Long-term, you also want barcodes; most label printers map directly to a SKU column.

Excel Inventory at a Glance

200+
Items a basic template handles cleanly
5 min
To add data validation site-wide
30 days
Typical supplier lead time to plan around
1 sheet
All most small teams ever need

Rule of thumb: A single table with a Location column lets SUMIFS, pivot tables, and reorder logic see all stock at once. Splitting locations into separate tabs forces manual rollups and breaks alerts. Keep the structure flat; add columns, not sheets. Every working inventory file I've seen in production follows this pattern โ€” and every broken one violates it.

Now the formulas. Quantity on hand should not be typed in manually after week one. Instead, calculate it: starting stock + received โˆ’ sold โˆ’ adjustments. Use a transactions sheet where each row is one movement, then SUMIFS the totals back to the master list. That way you keep an audit trail. If a number looks wrong, you can trace it. If you just overwrite the cell, you lose history. SUMIFS syntax: =SUMIFS(range, criteria_range1, criteria1, ...). It looks ugly the first time, but it is the workhorse here.

Reorder alerts are where templates earn their keep. Add a column called Status with this formula: =IF(QuantityOnHand <= ReorderLevel, "REORDER", "OK"). Then conditional format the column so REORDER cells glow red. Anyone scrolling sees the problem instantly. For more nuance, add a second tier: "LOW" when quantity drops below 50% of max, "REORDER" when it hits the threshold, "OUT" when it hits zero. Nested IF or IFS handles it. Pair the alert with an automated email and you are basically running a tiny ERP.

VLOOKUP and its newer cousin XLOOKUP let one sheet reference another. Say your transactions sheet has just SKU and quantity moved. You want the item name and unit cost pulled in automatically. =VLOOKUP(SKU, MasterList, 2, FALSE) grabs the name; column 5 gets you the cost. XLOOKUP is cleaner: =XLOOKUP(SKU, MasterList[SKU], MasterList[Name]). It does not break when you reorder columns and it returns nothing rather than #N/A when an item is missing. If your Excel version supports it, use XLOOKUP. No exceptions.

Pivot tables flatten the math. Drop your transactions into a pivot, put SKU in Rows, Date in Columns (grouped by month), and Quantity in Values. You instantly see which items move fast and which sit. Add a slicer for category and you have a self-serve report. Most small teams never get past the master list, which is a shame because a pivot answers more questions in 30 seconds than a custom dashboard does in a week. If you've never built one, see our Power Query walkthrough.

Conditional formatting is the polish. Highlight rows where quantity is below reorder level. Color-code categories so the eye groups them. Use data bars in the quantity column for a quick visual sense of who is heavy and who is light. Do not overdo it. Three colors maximum on any one sheet, or the page turns into a Skittles bag and nobody trusts the data. The Home tab has every option you need. Stick to background fill and font color; leave icons for dashboards.

The Four Sheets You Need

๐Ÿ”ด Master List

One row per SKU. Holds item name, category, reorder level, unit cost, supplier. The single source of truth โ€” every other sheet references it.

๐ŸŸ  Transactions

Every receive, sale, or adjustment as a row. SUMIFS rolls totals back to Master List. Provides full audit trail when numbers look wrong.

๐ŸŸก Suppliers

Contact, lead time, MOQ. Referenced by XLOOKUP from Master List for reorder emails. Lead time drives reorder point math directly.

๐ŸŸข Summary

Pivot tables and printable reports. Never type numbers here; everything is referenced from Transactions or Master List. Refresh, do not edit.

Build Your Template Step by Step

๐Ÿ“‹ Setup

Open a blank workbook. Press Ctrl+T to convert your data range to a Table. Name it MasterList in the Table Design tab. Add headers: SKU, Item, Category, QuantityOnHand, ReorderLevel, UnitCost, Supplier, Location. Format the SKU column as Text so leading zeros survive. Format UnitCost as Currency with two decimals.

Create a second sheet called Transactions. Add headers: Date, SKU, Type (In/Out), Qty, Cost, Notes. Convert that range to a Table too and name it Transactions. The named tables make formulas readable: SUMIFS(Transactions[Qty], ...) is far cleaner than chasing cell references.

๐Ÿ“‹ Formulas

QuantityOnHand should be calculated, not typed. In the QuantityOnHand column, use: =SUMIFS(Transactions[Qty], Transactions[SKU], [@SKU], Transactions[Type], "In") โˆ’ SUMIFS(Transactions[Qty], Transactions[SKU], [@SKU], Transactions[Type], "Out"). This pulls every movement from the Transactions table and computes the live total.

Status column: =IF([@QuantityOnHand] <= [@ReorderLevel], "REORDER", "OK"). For tiered alerts, use IFS: =IFS([@QuantityOnHand]=0, "OUT", [@QuantityOnHand]<=[@ReorderLevel], "REORDER", TRUE, "OK"). The IFS function reads more cleanly than nested IFs and avoids the parentheses jungle.

๐Ÿ“‹ Formatting

Select the Status column. Go to Home โ†’ Conditional Formatting โ†’ Highlight Cells Rules โ†’ Equal To. Type REORDER and pick red fill. Add another rule for OUT with dark red fill, and one for LOW with yellow. Keep it to three colors max so the eye still tracks the warnings.

Add data bars to the QuantityOnHand column for a visual sense of stock weight. Home โ†’ Conditional Formatting โ†’ Data Bars โ†’ Gradient Fill. Pick a neutral color so it does not compete with the Status flags. Two visual cues are plenty; more than that and the sheet becomes noise.

๐Ÿ“‹ Validation

Click the Category header and select the whole column. Data โ†’ Data Validation โ†’ Allow โ†’ List. Type your categories comma-separated, or reference a named range. Now users get a dropdown instead of a free-text field โ€” and pivot tables stop fragmenting on typos.

Repeat for Supplier (reference the Suppliers sheet), Location (small list), and Type in the Transactions table (In, Out, Adjustment). For SKUs in Transactions, point validation at MasterList[SKU] so users cannot record movements for codes that do not exist.

Data validation prevents the disasters. Right-click the category column, pick Data Validation, and lock it to a list. Now nobody types "Beverage", "beverages", or "bev." โ€” they pick from a dropdown. Same for supplier name, location, and status. Validation is a five-minute setup that pays back every time someone fat-fingers an entry. For SKUs, you can validate against the master list to prevent typing a code that does not exist. The error popup is annoying for two days, then it becomes invisible discipline.

Backups matter. Excel is single-user friendly, multi-user nightmare. If two people open the same file from a shared drive and both type, one set of edits dies. SharePoint and OneDrive with co-authoring fix that, but the formulas need to live in tables (Ctrl+T), not loose ranges, for sync to behave. Save a copy every Friday and keep four weeks of history. Cloud sync helps, but it cannot undo a deletion you didn't notice for a month. Old-school file_2026-05-14.xlsx works fine.

What about cycle counts? You cannot just trust the running quantity column forever. Schedule a physical count โ€” full or partial โ€” every month or quarter. Print the master list, walk the shelves, mark counted quantities in a column called Counted. Then run a Variance column: =Counted โˆ’ QuantityOnHand. Anything nonzero gets investigated. Theft, breakage, miscounts, scanner errors โ€” they all show up here. A clean variance report is the first sign your template is doing real work, not just sitting pretty.

Multi-location? Add a Location column instead of duplicating the sheet. Then your SUMIFS conditions on both SKU and Location. A pivot table grouped by Location gives you per-warehouse totals. Trying to maintain one tab per location sounds organized but breaks reorder logic โ€” you cannot easily see total stock across all sites. One master table beats five duplicates every time. If a location closes, you filter it out. If a new one opens, you add a value to the dropdown. Done.

Supplier management hides in the same workbook. Add a Suppliers sheet with name, contact email, lead time in days, and minimum order quantity. Reference it from the master list with XLOOKUP. Now your reorder column can pull the supplier email automatically, ready for a copy-paste into Outlook โ€” or, for the ambitious, a Power Automate flow that drafts the email on its own. Lead time matters: an item with a 30-day lead and a 10-unit-per-week burn rate needs a reorder point of 300, not 50.

Pre-Launch Checklist

Every SKU is unique and contains no spaces or special characters
All data ranges are formatted as Tables (Ctrl+T) with named references
Data validation lists cover Category, Supplier, Location, and Status
QuantityOnHand is calculated via SUMIFS, never typed manually
Status column uses IF or IFS and shows REORDER, OK, OUT, LOW values
Conditional formatting highlights REORDER rows in red and OUT in dark red
Suppliers sheet has Name, Email, Lead Time (days), and MOQ columns
A pivot table summarizes movement by SKU, month, and category
File is saved to OneDrive or SharePoint with version history enabled
Print view is configured with header repeat and fit-to-width scaling
Test Your Excel Skills โ€” Free Practice Quiz

For the math nerds: economic order quantity (EOQ) and safety stock are easy to add. EOQ = sqrt((2 ร— annual demand ร— order cost) / holding cost per unit). One Excel cell. Safety stock = (max daily usage ร— max lead time) โˆ’ (avg daily usage ร— avg lead time). Two cells. You will not need either on day one, but they are nice to have once you trust your data. Most templates skip both, then the manager asks why we are always either out of stock or buried in pallets. This is why.

Common mistakes to avoid: do not store dates as text โ€” Excel cannot sort them. Do not merge cells inside data ranges; pivot tables and filters refuse to cooperate. Do not put totals at the top; put them in a separate summary sheet or use SUBTOTAL at the bottom of a table. Do not hide columns instead of deleting unused ones; hidden columns still get exported and confuse downstream users. And for the love of pivot tables, format your data range as a Table (Ctrl+T) before doing anything else.

Practice makes this stick. Try our Microsoft Excel practice tests for hands-on questions covering SUMIFS, VLOOKUP, XLOOKUP, and pivot logic โ€” the exact skills an inventory template demands. The questions are short and the explanations show the formula syntax, so you can apply what you learn the same day. Build the template alongside the practice and you finish with both the file and the muscle memory. Most people stop reading at step seven; the ones who finish the quiz keep going.

Free templates are a fine starting point. Microsoft Office's built-in inventory template is decent for under 100 items. Vertex42 has a clean small-business version. Smartsheet's is overbuilt but useful for warehouses. Whatever you choose, audit it first. Open every sheet, click into every formula, and rename anything that does not match your terminology. Templates from strangers often have hidden sheets, named ranges that conflict, or merged cells you'll trip over later. Five minutes of cleanup saves five hours of debugging.

One more tip: build a print view. Inventory data is messy on screen, but managers love a printed snapshot. Use Page Layout to set the print area, repeat header rows on each page, and fit-to-width. Add a Print Date cell with =TODAY(). Two-minute job, looks professional, and beats handing over a 12-page mess. Same idea for PDF export. Your suppliers and accountants will thank you. Not really. But they will stop complaining, which is functionally the same thing.

Excel for Inventory: Pros and Cons

Pros

  • Free if you already own Microsoft Office or 365
  • Total control over columns, formulas, and structure
  • No learning curve for basic data entry users
  • Integrates with Power Query and Power Automate at no extra cost
  • Easy print and PDF export for reports and audits
  • Massive community โ€” answers to every question are one search away

Cons

  • Multi-user editing requires SharePoint or OneDrive co-authoring
  • No native barcode scanning without USB scanners or add-ins
  • Performance starts to slow past roughly 10,000 active SKUs
  • Audit trail relies entirely on user discipline, not enforcement
  • Mobile app is functional but cramped for serious data entry
  • No real role-based permissions โ€” everyone with file access sees everything

Final piece โ€” automation. Once your file is stable, hook it into Power Query or a Power Automate flow. Power Query can pull daily sales from a CSV and append rows to your transactions sheet, no copy-paste. Power Automate can email the reorder list every Monday at 9 AM. Both are free in most Microsoft 365 plans. They look intimidating but the recorder mode handles 90% of the setup. Start small, automate one tedious step a month, and within a quarter you have a system that updates itself.

A note on barcode scanning. USB barcode scanners act like keyboards: scan a code and it types into the active cell. Set up a dedicated Scan sheet with one column for SKU and one for quantity, then a button that runs a macro to append the row to your transactions sheet. Cheap, reliable, faster than typing. Wireless scanners with Bluetooth pair to laptops the same way. The macro is six lines of VBA. If you've never written VBA, the recorder produces 80% of it for you.

What if you sell online? Marketplaces โ€” Shopify, Amazon, eBay โ€” export CSV reports of orders. Pull those into a Power Query connection that refreshes daily and auto-appends to your transactions sheet. Now your in-Excel quantity reflects real sales without manual entry. Pair this with a daily reorder email and you have a closed loop: customer orders, your template subtracts, alert fires when a SKU crosses the threshold, you place the PO. The Power Query learning curve is short for this use case.

Cost tracking deserves its own column. Average cost = SUMIFS(Transactions[Cost]) divided by SUMIFS(Transactions[Qty]) for incoming movements. That gives you a weighted average for accounting. FIFO is harder in pure Excel โ€” you need helper columns to track which lot is consumed first. Most small businesses can survive on weighted average for years before needing true FIFO. If you do need lot tracking (food, pharma, electronics), add a LotID column to both Master List and Transactions.

One last thing about Excel VBA and the platform in general: it rewards consistency. Same date format everywhere. Same casing for category names. Same SKU pattern. Inconsistent data is the silent killer of every spreadsheet bigger than 50 rows. The good news is Excel will enforce most of that for you if you let it โ€” data validation, table formatting, and named ranges do the heavy lifting. Set them up once, and the file polices itself. Your future self, three months in, will be very grateful.

Closing thought, and this is the most important takeaway by far: an Excel inventory template is not a magic fix. It is a structured place for honest data. The discipline of entering every transaction, running every count, and trusting the formulas is what saves money. Skip the discipline and even the best template becomes a graveyard of stale numbers. Start with one sheet, six columns, and one week of clean data. Build from there. The teams that win at inventory aren't the ones with the fanciest workbook โ€” they're the ones who actually use it.

Practice Pivot Tables and SUMIFS Now

Excel Questions and Answers

Does Excel come with an inventory template?

Yes. Open Excel, click New, and search "inventory" in the template gallery. Microsoft ships a few free options including a basic stock list and a small business version. They're fine starting points for under 200 items but expect to add columns and formulas to fit your workflow.

How many items can an Excel inventory template handle?

Excel handles over a million rows technically, but real-world performance starts to slow past about 10,000 active SKUs once formulas and conditional formatting are running. For under 5,000 items, performance is typically smooth on any modern laptop. Past that, consider Power Pivot or a dedicated inventory system.

What's the best formula for tracking stock levels?

SUMIFS pulling from a transactions sheet. The formula =SUMIFS(Transactions[Qty], Transactions[SKU], [@SKU], Transactions[Type], "In") minus the same with "Out" gives you current stock with a full audit trail. Never type quantity directly; let the formula calculate it from movement records.

How do I add a reorder alert in Excel?

Add a Status column with =IF(QuantityOnHand <= ReorderLevel, "REORDER", "OK"). Then use conditional formatting to highlight any cell containing REORDER in red. For tiered alerts, nest the IF or use IFS to add LOW and OUT states. The visual cue makes problems impossible to miss when scrolling.

Can multiple people edit the same Excel inventory template?

Yes, but only through SharePoint or OneDrive co-authoring. Save the file to a cloud location, open it in Excel for the web or the desktop app with co-authoring enabled, and edits sync in near real-time. Local file shares do not support concurrent editing reliably โ€” one user's changes will overwrite the other's.

What's the difference between VLOOKUP and XLOOKUP for inventory?

XLOOKUP is newer, faster, and easier to read. It does not break when columns are reordered and supports default values for missing matches. VLOOKUP still works fine for simple lookups but requires the lookup column to be leftmost. If your Excel version supports XLOOKUP (Microsoft 365 or Excel 2021+), use it.

How do I prevent typos in category or supplier names?

Use Data Validation. Select the column, go to Data โ†’ Data Validation โ†’ Allow โ†’ List, and either type the options or reference a range. Users get a dropdown instead of a free-text field. Five minutes of setup eliminates 90% of "why is the pivot table broken" support tickets.

Should I back up my Excel inventory file?

Yes. Save weekly snapshots with a date suffix and keep at least four weeks of history. OneDrive and SharePoint provide automatic version history, but neither protects against accidental deletion you don't notice for a month. A simple folder of dated copies is cheap insurance against catastrophic data loss.
โ–ถ Start Quiz