Task List Templates

The Excel task list templates on this page demonstrate some of the many ways that you can track tasks using a spreadsheet, from simple to do lists to more advanced Gantt charts. These templates demonstrate using icon sets to display priorities, using conditional formatting to display a progress bar, creating a gantt using using a stacked bar chart, and using a check mark to cross out tasks when they've been completed.

Tell me what you think about these templates: Leave a comment on the related blog article " Add Cool Features to Your To Do Lists ."

This Page (contents):

  • Project Task List
  • Simple Task Tracker
  • Task List with Gantt Chart

Task Checklist Template

Printable task list templates, project task list template.

Project Task List Template

License : Private Use (not for distribution or resale)

Description

This spreadsheet demonstrates the use of conditional formatting to highlight the Priority column, to add a progress bar to the % Complete column, and to create a functioning check box via data validation. It also includes columns for entering budget and hours spent on each task.

Update 9/23/2019: Added the Google Sheets version - replaced the icon sets with in-cell checkboxes. Google Sheets does not yet have in-cell data bars (for the % Complete column).

Simple Task Tracker Template

Screenshot of the Task Tracker Template in Excel

This task tracker template demonstrates the use of custom icon sets via conditional formatting to show a priority rating of 1-4 with different color circles. It uses a similar technique for the checkbox in the Done column.

Project Task List with Gantt Chart

Project Task List Template with Gantt Chart

A gantt chart can be created from a task list using a stacked bar chart in Excel. This is a functional template that can be used for real project management tasks, but the primary purpose is to demonstrate how the data table is set up to create the gantt chart.

Screenshot of the Task Checklist in Excel

This task list template demonstrates how to create a checkbox using a data validation drop-down and how to use simple conditional formatting conditions to display HIGH, MEDIUM and LOW priority values. It also uses conditional formatting to change fonts to a gray strike-through when the checkbox is checked.

► How to Insert a Check Mark in Excel (on youtube)!

More Templates For Tracking Tasks

Thumbnail - Action Items Template

  • How to Use Conditional Formatting in Excel at vertex42.com
  • Create a Drop Down List in Excel at vertex42.com

Follow Us On ...

Related templates.

Thumbnail - Personal Planner Template

Project Management

ExcelDemy

How to Create a Task Tracker in Excel (Download Free Template)

Abrar-ur-Rahman Niloy

Step 1 – Making a Dataset for a Task Tracker in Excel

  • Insert the following headers in the dataset.

how to create a task tracker in excel

  • Select cell B5 and go to Home.
  • Select Conditional Formatting from the Styles tab and choose New Rule from the drop-down list.

work assignment tracker excel

  • In the New Formatting Rule box, select Format only cells that contain in the Select a Rule Type.
  • Select Cell value as not equal to and select a blank cell for the value.
  • Click on Format .

work assignment tracker excel

  • Go to the Border tab on the Format Cells box and select the Outline border.

work assignment tracker excel

  • Click on OK in both boxes.
  • Go to the Home tab with the formatted cell selected and select Format Painter .

work assignment tracker excel

  • Select an area where you want to keep the dataset.
  • Let’s name the spreadsheet AllTaskList . Create a new one with the name Tables .
  • Create different values for categories, urgencies, importance, and the status here.

how to create a task tracker in excel

  • Go back to the AllTaskList sheet and select cell D5 .
  • Go to the Data tab and select Data Validation from the Data Tools  group.

how to create a task tracker in excel

  • The Data Validation box will pop up. Go to the Settings tab and select List under Allow .

how to create a task tracker in excel

  • Select the Source field and then select the different values from the Tables.

work assignment tracker excel

  • Click on OK in the Data Validation
  • A list box will be added with the categories in the selected cell. Select the appropriate category for it.

how to create a task tracker in excel

  • Add list boxes under the other columns with the help of the other sheet.
  • Insert values.

how to create a task tracker in excel

  • Fill out all the tasks in the dataset. The formats will be automatically added if you copy the lists created by Data Validation for the next rows.

how to create a task tracker in excel

  • Select columns B:G, and in the name box, write the name of the dataset, We put Tasklist .

how to create a task tracker in excel

Read More:   How to Create a Daily Task Sheet in Excel

Step 2 – Creating a New Sheet to Track Pending Tasks from the Dataset

  • Create a new spreadsheet and name it Pending Tasks .
  • Copy over the headers from the first sheet.

work assignment tracker excel

  • Select cell B5 and insert the following formula.

=FILTER(Tasklist,(AllTaskList!B:B<>0)*(AllTaskList!G:G="Not Done"))

how to create a task tracker in excel

  • Press Enter on your keyboard.

how to create a task tracker in excel

  • Generally, the list will be sorted as a serial number.
  • For a sort by category, use the following formula in cell B5 instead.

=SORT(FILTER(Tasklist,(AllTaskList!B:B<>0)*(AllTaskList!G:G="Not Done")),3)

how to create a task tracker in excel

Breakdown of the Formula

=FILTER(Tasklist,(AllTaskList!B:B<>0)*(AllTaskList!G:G=”Not Done”))

AllTaskList!B:B<>0 is a formula to express a condition and returns a boolean value.

Similarly, AllTaskList!G:G=”Not Done” is a condition and returns a boolean value.

FILTER(Tasklist,(AllTaskList!B:B<>0)*(AllTaskList!G:G=”Not Done”)) returns all the row values where both the above conditions were TRUE.

Read More: How to Create a Progress Tracker in Excel

Step 3 – Creating Pending Tasks Using Different Parameters

  • Create a new sheet and create all the headers in it. Name the sheet Pending Tasks by Category .

work assignment tracker excel

  • Select cell D4 and go to the Data tab.
  • Under the Data Tools group, select Data Validation .

work assignment tracker excel

  • In the Data Validation box, select List under Allow in the Settings  tab.

work assignment tracker excel

  • Select different category values from the Tables sheet and press Enter .
  • Click on OK .
  • Select a category from it.
  • Select cell B7 and insert the following formula.

=FILTER(Tasklist,(AllTaskList!G:G="Not Done")*(AllTaskList!D:D='Pending Tasks by Categroy'!D4))

how to create a task tracker in excel

  • Press Enter . You will see all the values with the category you have selected.

how to create a task tracker in excel

  • You can change the category in cell D4 to see the pending tasks of other categories.

how to create a task tracker in excel

  • Similarly, you can create pending tasks by urgency and importance.

Read More:  How to Create Real Time Tracker in Excel

Step 4 – Building the Task Details List

  • Create a new spreadsheet and name it Task Details .
  • Insert the fields of a task in a column and format them.

work assignment tracker excel

  • Enter a serial number in cell C4 .
  • Go to cell C6 and use:

work assignment tracker excel

  • Go to cell C7 and insert the following formula, then press Enter .

=VLOOKUP($C$4,Tasklist,2)

how to create a task tracker in excel

  • Go to cell C8 and apply the following formula:

=VLOOKUP($C$4,Tasklist,3)

work assignment tracker excel

  • Go to cell C9 and apply the following formula:

=VLOOKUP($C$4,Tasklist,4)

work assignment tracker excel

  • Go to cell C10 and apply the following formula:

=VLOOKUP($C$4,Tasklist,5)

how to create a task tracker in excel

  • Go to cell C11,  then apply the following formula:

=IF(VLOOKUP($C$4,Tasklist,6)="Done","Completed","Work in Progress")

work assignment tracker excel

  • You can see the task details from the spreadsheet.

how to create a task tracker in excel

  • If you change the serial number in cell C4 , you can see the particulars of that specific task.

how to create a task tracker in excel

=IF(VLOOKUP($C$4,Tasklist,6)=”Done”,”Completed”,”Work in Progress”)

VLOOKUP($C$4,Tasklist,6) looks for the value in cell C4 in the 6th column of the original dataset named “Tasklist” .

=IF(VLOOKUP($C$4,Tasklist,6)=”Done”,”Completed”,”Work in Progress”) checks if the value that came up is “Done”. If it is the value, then it prints “Completed”, otherwise goes for the value “Work in Progress”.

Step 5 – Generating a Dynamic Report on the Task Tracker

  • Create a new spreadsheet and name it Summary .
  • Create a dataset to separate complete and incomplete tasks for different categories.

work assignment tracker excel

  • Go the cell C5 in the spreadsheet and insert the following formula, then press Enter .

=COUNTIFS(AllTaskList!$D:$D,Summary!$B5,AllTaskList!$G:$G,C$4)

how to create a task tracker in excel

  • Select the cell again.
  • Click and drag the fill handle icon down to fill up the formula for the rest of the categories.

work assignment tracker excel

  • Click and drag the fill handle icon to the right to fill up the cells of the next column with the same formula.

how to create a task tracker in excel

  • Use the following formula in cell E5 .

=SUM(C5:D5)

how to create a task tracker in excel

  • Select the cell again and click and drag the fill handle icon down to the end of the column.

work assignment tracker excel

  • Find the total tasks done and not done in cells C9 and D9 .

how to create a task tracker in excel

  • After some formatting, the final summary will look like this.

how to create a task tracker in excel

  • Select the range B5:E9 and go to Insert.
  • Select Recommended Chart .

work assignment tracker excel

  • The Insert Chart box will open. Go to the All Charts tab in it.
  • Select your preferred chart. We are using a column chart for the demonstration, so select Column from the left and choose the chart from the right as shown in the picture below.

work assignment tracker excel

  • Click on OK . The column chart will pop up.

how to create a task tracker in excel

  • Click on the Chart and you’ll get the Design tab on the ribbon, where you can apply formatting and modifications.

how to create a task tracker in excel

  • Select the category column and the “Done” column in the dataset.

work assignment tracker excel

  • Go to the Insert tab and select Recommended Chart.
  • Go to the All Charts tab and select Pie from the left side of the box.
  • Select the type of the pie chart you want from the right.

how to create a task tracker in excel

  • Click on OK and you will get a pie chart on top of the spreadsheet. If you change the chart style, it will look something like this.

how to create a task tracker in excel

  • Follow the same procedure after selecting the “Category” column and the “Not Done” column and get a pie chart for the incomplete tasks.

how to create a task tracker in excel

  • Rearrange the charts inside the dataset.

how to create a task tracker in excel

Download the Template

Task Tracker Template.xlsx

Related Articles

  • How to Keep Track of Customer Payments in Excel
  • How to Keep Track of Customer Orders in Excel
  • How to Keep Track of Invoices and Payments in Excel
  • How to Keep Track of Clients in Excel
  • How to Make a Sales Tracker in Excel

<< Go Back to  Create a Tracker in Excel | Tracker in Excel | Excel Templates

What is ExcelDemy?

Tags: How to Create a Tracker in Excel

Abrar-ur-Rahman Niloy

Abrar-ur-Rahman Niloy, holding a B.Sc. in Naval Architecture and Marine Engineering, has contributed to Exceldemy for nearly 1.5 years. As a leader in Excel, VBA, and Content Development teams, he authored 114+ articles and assisted the Exceldemy forum. Presently, as a project writer, he prioritizes stepping out of his comfort zone, aiming for constant technical improvement. Niloy's interests encompass Excel & VBA, Pivot Table, Power Query, Python, Data Analysis, and Machine Learning libraries, showcasing his commitment to diverse... Read Full Bio

' src=

[Require your URGENT help.]

When I open this Task tracker template after downloading, it shows an _xlfn. prefix, which is displayed in front of certain formulas (‘SORT’ and ‘FILTER’) in every sheet where they were used.

I am using MS Office Home and student 2016 licensed version. I found that this error occurs when these formulas are not available, in my Office version and also in many other versions.

Therefore, I kindly request the team to create and send me the new task tracker template which resolves this formula issue in my MS Office version. I would be earnestly waiting for your assistance.

Regards, Ashish

Avatar photo

Greetings ASHISH PANT , I appreciate you asking this question. We use the Microsoft Office 365 version here. In order to resolve your problem, you need to open the Excel workbook in Microsoft Office 365 version.

Regards ExcelDemy

' src=

This is a great tutorial! I’ve been wanting to create a task tracker for a while, and this is the perfect guide. Thanks!

Hello, Instast!

Thanks for your appreciation. To get more helpful content stay in touch with ExcelDemy.

' src=

This is really amazing! Why not add a timestamp at a new column, at the very end of every table. This will help tracking the latest updates.

Thank you very much!

Abrar-ur-Rahman Niloy

Hi Nawaf, thanks for the appreciation!

We focused more on the checklist side of the task tracker- whether or not the task is done or yet to be done (or not) was our main focus here. Also, we wanted to rearrange and prioritize our tasks based on a criteria. So we skipped the timestamps in this article. If that is your priority, you can easily do so too by adding an extra column and including it within the dataset too. You can also add an assigned time and current time and compare them to find the status of the task in the main dataset. If you face any problem regarding the timestamps or want to do something particular with them, let us know. We are always here to assist.

' src=

how great is the content you have delivered

Hello y2mate ,

Thanks for your appreciation.

' src=

Hello Viraltecho ,

You are most welcome.

' src=

Loved this post! The step-by-step guide made it easy for me to create a task tracker in Excel. The free template was also super helpful and exactly what I needed. Thanks for sharing!

Hello Mp3 juice ,

You are most welcome. Thanks for your appreciation. Our free templates are ready to use.

' src=

When I use the VLOOKUP function within the “Task Detail” sheet, I get a #N/A error. I did make my ‘AllTaskList’ sheet a table, could that be the reason it fails?

Many thanks

Hello Daz C ,

Making AllTaskList sheet a table is not an issue. May be Named Range is not working properly that’s why VLOOKUP is not getting the lookup values.

Please, check the tasklist from Named Manager . Go to Formulas >> from Defined Names >> select Name Manager . Check the Tasklist contains =’AllTaskList (2)’!$B:$G

work assignment tracker excel

N.B: You can change your list based on your sheet.

Here, I made the AllTaskList a table to check either it’s a problem or not.

work assignment tracker excel

Here VLOOKUP is working perfectly.

I am uploading the updated Excel file, please download it from here: Creating a Task Tracker Using Table.xlsx

Reagards ExcelDemy

Leave a reply Cancel reply

ExcelDemy is a place where you can learn Excel, and get solutions to your Excel & Excel VBA-related problems, Data Analysis with Excel, etc. We provide tips, how to guide, provide online training, and also provide Excel solutions to your business problems.

See Our Reviews at

trustpilot review

  • User Reviews
  • List of Services
  • Service Pricing
  • Create Basic Excel Pivot Tables
  • Excel Formulas and Functions
  • Excel Charts and SmartArt Graphics
  • Advanced Excel Training
  • Data Analysis Excel for Beginners

DMCA.com Protection Status

Advanced Excel Exercises with Solutions PDF

ExcelDemy

IMAGES

  1. EXCEL of Simple Task Tracker.xlsx

    work assignment tracker excel

  2. Pin on Management

    work assignment tracker excel

  3. Free Excel Task Tracker Template & To-Do List

    work assignment tracker excel

  4. Free Excel Task Tracker Template ~ Excel Templates

    work assignment tracker excel

  5. Free Assignments Template For Excel

    work assignment tracker excel

  6. Daily Task Tracker Excel Template Free Download

    work assignment tracker excel

VIDEO

  1. HOW TO CREATE AN ASSIGNMENT TRACKER USING MICROSOFT EXCEL

  2. Simple Planning Assignment Tracker