Spreadsheet formulas turn your basetao tracker from a static list into a smart assistant. These ten functions handle the most common tasks: auto-summing costs, flagging overdue orders, counting items by status, and looking up seller ratings. You do not need to be a math expert. Copy the formulas exactly as written and adjust the cell references to match your sheet.
Want to start using Basetao Spreadsheet right away?
Visit Basetao SpreadsheetTo see your total spending across all orders, use =SUM(C2:C100) where column C contains your item prices. Place this in a cell near the top of your sheet so it is always visible. Every time you add a new row inside the range, the total updates automatically.
To see how much you have spent only on delivered items, use =SUMIF(D2:D100, "Delivered", C2:C100). Column D is your Status column. This formula adds only the rows where Status equals Delivered. Replace "Delivered" with "Ordered" or "Shipped" to see spending in other stages.
To count how many items are currently in transit, use =COUNTIF(D2:D100, "Shipped"). This returns a number like 7. Create one of these for each status and you get an instant order dashboard showing your pipeline at a glance.
To flag items that have been in Ordered status for more than seven days, use =IF(TODAY()-B2>7, "Follow Up", "OK") where column B is your Order Date. This returns Follow Up for old orders and OK for recent ones. Copy the formula down the column for automatic flagging.
If you keep a separate Seller Ratings tab, use =VLOOKUP(E2, 'Seller Ratings'!A:B, 2, FALSE) to pull a seller's rating into your main order sheet. Column E contains the seller name. The formula searches the ratings tab and returns the score automatically.
Keep this table handy while building your basetao spreadsheet. Each formula solves a real tracking problem.
| Formula | What It Does | Example Use |
|---|---|---|
| =SUM(range) | Adds all numbers | Total spending |
| =SUMIF(range, criteria, sum_range) | Conditional sum | Spent on delivered items |
| =COUNTIF(range, criteria) | Count matching rows | Items in transit |
| =IF(condition, true, false) | Logical branching | Flag overdue orders |
| =VLOOKUP(lookup, table, col, exact) | Table lookup | Pull seller ratings |
| =TODAY() | Current date | Calculate order age |
| =DATEDIF(start, end, "D") | Days between dates | Shipping duration |
| =AVERAGE(range) | Mean value | Average item price |
| =MAX(range) | Highest value | Most expensive order |
| =MIN(range) | Lowest value | Cheapest order |
Our complete guide covers everything from basics to advanced techniques.
Before applying a formula to your entire sheet, test it on one row with fake data. If the result looks wrong, debug on the dummy row instead of scrambling your real data.
Yes. All ten formulas are compatible with Excel, Google Sheets, and Apple Numbers. VLOOKUP has a modern replacement called XLOOKUP in newer Excel versions, but VLOOKUP works everywhere.
Get started today with our free templates and comprehensive guides.