How to Build a Task Tracker: An Excel Template, and When It Hits Its Limit
Published:
Last Updated:
Category: Campaign Management
Published:
Last Updated:
Category: Campaign Management

Authors: Shusaku Yosa
A task tracker is the cheapest project management tool you can build in Excel. At small scale, one sheet handles everything. It also has a clear breaking point, past which the cost of maintaining it exceeds what it returns. This article covers the Excel column layout you can reuse as-is, how to build it, the settings that make it easier to run — and how to tell when it is time to stop using Excel.
A task tracker is a list for following who is doing what by when, and where each item currently stands. Project management documents look alike, and mixing up their roles leaves all of them half-useful. Worth separating first.
With five people or fewer and a timeline of a few months, a single task tracker covers it. Add a Gantt chart once dependencies get complicated, and split off an issue log once items start appearing that are not yet decided. There is no need to build all four up front.
Nine columns are enough. Lay them out in order from column A.
Effort, estimated hours, percent complete, predecessor — you will want to add all of these eventually. Check first whether you actually look at them enough to justify the typing. As a rule of thumb, if registering one task takes more than fifteen seconds, you have too many columns. Heavy data entry translates directly into infrequent updates.
Select column F and set up a list under Data Validation on the Data tab. Left to free text, "Done", "Completed" and "done" will all coexist, and neither filtering nor counting will work. It is a dull setting, and the single biggest thing you can do to extend the life of the sheet.
Select the data rows and add a conditional formatting rule of the "use a formula to determine which cells to format" type with the formula below (due date in column E, status in column F).
=AND($E2<>"", $E2<TODAY(), $F2<>"Done")
To warn in yellow three days ahead of the due date, add the following as a separate rule.
=AND($E2<>"", $E2-TODAY()>=0, $E2-TODAY()<=3, $F2<>"Done")
Deleting completed rows is not advisable, because you lose the ability to answer "when did that finish?" later. Grey them out with conditional formatting instead, using a rule such as a test that column F equals Done, and hide them with a filter day to day.
An Excel task tracker is excellent when conditions suit it. The problem is that teams keep using one long past the point where they should have stopped. While you are avoiding the cost of switching, the act of updating starts eating the hours. If two or more of the following apply, it is time to reconsider.
If the file is circulating by email or chat, versions will fork. The moment something like "tasks_revised_final2.xlsx" appears, the sheet has stopped being a source of truth. If this is the only problem, you do not need a different category of tool — moving to Google Sheets solves it.
The whole list no longer fits on one screen, and the sheet becomes unusable without filters. From there, mistakes of the "I forgot the filter was on and only saw part of it" variety multiply. Splitting into several sheets buys time, but then you lose the ability to total anything.
You update the task tracker, then write the same thing into the Gantt chart and the status report. Beyond tripling the cost of every update, this guarantees that something, somewhere, is out of date. The moment re-keying appears, the premise of a single source of truth has already collapsed.
You have a list by task, but not a view of load by person. Deadlines can be piling up on one team member without anyone noticing from the sheet alone. When several projects run in parallel, this is the first thing to break.
Overwrite the cell and both the original date and the reason for the change are gone. This shows up later as an inability to explain what caused a delay, and as the same estimation mistakes repeating.
The common test is simple. When the time spent updating the sheet starts squeezing the time spent moving tasks forward, that is the limit.
You do not have to move everything into a tool. The right next step depends on what has actually broken.
For marketing work, what ultimately gets asked is not whether the tasks finished but whether the results justified the budget. Xtrategy manages campaign schedules alongside budget and KPIs on a single screen, with a cross-campaign view. For managing work at the campaign level, see also the marketing campaign management template.

The twelve columns of an issue log and four rules for writing entries, how to set priority, and the conditional formatti...

A step-by-step guide to building a Gantt chart in Excel or Google Sheets: the column layout you can reuse as-is, the con...

A five-step method for building a work breakdown structure, a column layout and sample hierarchy you can copy, and four ...