The Introduction
Managing stock can be a nightmare. Whether you are tracking office supplies, retail products, or spare parts, doing it manually leads to mistakes, lost items, and stress.
You don’t need to buy expensive inventory software. Today, I’ll show you how to build an automated Inventory Tracker using just Google Sheets and Google Forms.
The best part? You can update your stock right from your phone in seconds, and your master sheet updates itself automatically!
Step 1: Create Your Master Spreadsheet
First, we need a clean place to see our current stock levels.
Open a new Google Sheet and name it
Inventory Tracker.Label your columns in the first row like this:
A1: Product Name
B1: Initial Stock (What you start with)
C1: Stock Added
D1: Stock Removed
E1: Current Stock
Fill in a few example products in column A and give them an "Initial Stock" number in column B.
Step 2: Create the Google Form (Your Scanner)
Instead of typing directly into a messy spreadsheet, we will use a Google Form to log when items are added or removed.
In your Google Sheet, click on Tools in the top menu, then select Create a new form.
A new window will open. Name your form
Stock Logger.Add these 3 simple questions:
Question 1 (Dropdown):
Select Product(Type in your product names exactly as they appear in your sheet).Question 2 (Multiple Choice):
Action(Add two options:Stock InandStock Out).Question 3 (Short Answer):
Quantity(Change the response validation to "Number").
Now, whenever you or your team submit this form, the data automatically streams into a new tab in your spreadsheet called Form Responses 1.
Step 3: Automate the Math (The Magic Formula)
Now we need to tell our Master Sheet to calculate the totals from the form responses. Go back to your first tab.
We will use the =SUMIFS formula. Don't worry, it's easy!
Click on cell C2 (Stock Added) and paste this formula:
=SUMIFS('Form Responses 1'!C:C, 'Form Responses 1'!A:A, A2, 'Form Responses 1'!B:B, "Stock In")(This tells the sheet: "Look at the form responses, find this specific product, and add up the quantity only if the action was 'Stock In'.")Click on cell D2 (Stock Removed) and paste this formula:
=SUMIFS('Form Responses 1'!C:C, 'Form Responses 1'!A:A, A2, 'Form Responses 1'!B:B, "Stock Out")Click on cell E2 (Current Stock) and calculate the final total:
=B2 + C2 - D2Drag these three formulas down for all your products.
The Result
Open your Google Form, select a product, choose "Stock Out," and type in a number. Hit submit.
Go back to your Google Sheet—you will watch your Current Stock drop instantly!
Why This Workflow Wins:
Mobile Friendly: Save the Google Form link on your phone’s home screen. You can update stock while walking around your shop or office.
No Broken Formulas: Because users only interact with the Form, they can't accidentally click on a cell and delete your formulas.
History Log: You will always have a time-stamped record of exactly when stock changed.
Conclusion
You just built a powerful, reliable inventory system in less than 10 minutes. No coding, no expensive subscriptions—just smart use of tools you already have.
Try building this today! If you get stuck on the formula, leave a comment below and I will help you fix it.
Comments
Post a Comment