This is the second installment of project management using excel series.
Preparing & tracking a project plan using Gantt Charts
Part 2: Team To Do Lists – Project Tracking Tools
Project Status Reporting – Create a Timeline to display milestones
Time sheets and Resource management
Issue Trackers & Risk Management
Project Status Reporting – Dashboard
Bonus Post: Using Burn Down Charts to Understand Project Progress
Why Team To Do Lists as a Project Tracking Tool?
Projects are nothing but a group of people getting together and achieving an objective – like building system or constructing a bridge. While it is important to have a overall project plan and vision, it is equally important to understand how various day to day project activities are going on. This is where to do lists can help you a lot.
How to create a team to-do list to track project progress using Microsoft Excel
Microsoft Excel has a very good way to share a workbook with a team of people. We can use this feature to create a team to-do list. Here is a step by step tutorial to create a team todo list:
- First we will create a to-do list in excel in the following format:
Note, depending on the type of project and the kind of activities involved, your team to do list can look differently.
- In order to facilitate tracking, we have the following features:
- A column where the team member can specify his / her name. This should be done when the activity is done. A simple alternative could be to automatically load user’s name based on windows login ID. For more on this, see this article on DDoE.
- Another column where we generate a time stamp when the user enters the name. Please read this article to generate time stamps in excel
- The formula for time stamp is like this:
=IF(AND(D6<>"Not Done",D6<>""),IF(E6="",NOW(),E6),""). As you can guess, it is a circular formula. So we should enable iterative calculations from calculations options in Excel. Learn more about circular references here. - Using above 2 columns, we can track and measure how team members are working various activities and who has done what.
- When we are done, the todo list for project tracking looks like this:

- Once the list is created, first we should save it a network location where the list can be accessed by everyone.
- If your team is spread across the globe and cannot access one network, try the following options,
- Use Excel 365, it supports shared spreadsheets
- Sharepoint, If you have a sharepoint site that can be accessed by everyone, post the file there
- Use google docs spreadsheets. Google docs spreadsheets is a free alternative to MS Excel with several collaboration and team features. It is very intuitive and simple to use.
- You can create multiple copies of the to do list and share it with your team members and consolidate all the spreadsheets on frequent basis. This is a painful process as any format changes can create problems to your consolidation process.
- Once you place the file on network, we should enable sharing of the workbook. See the below screenshots to understand how to share a workbook.


- Now go get some work done.
- When you finish the task, just open the shared workbook and mark the task as done by entering your name. Excel will automatically fill in the time stamp when you marked the activity as done.
Download the To Do List Template and Use it to track your projects
Go ahead and download the excel team to-do list template and use it as a project tracking tool.
Download 24 Project Management Templates for Excel
Next Steps
You can use VBA macros to automatically remove the finished to do items. I have written an article on simple to do list app using excel sometime back. Check it out to get some ideas.
In the next installment, learn how to prepare a project time line that can display various key project milestones. If you haven’t already, read the previous part of the project management using excel series – Project Planning using Gantt Charts.
Resources for Project Managers
Check out my Project Management using Excel page for more resources and helpful information on project management.
Your thoughts and suggestions?
I am not a project management expert. In fact, I know very little about project management, that is why I started this series, so that I can share the little I have picked up in the last few years and learn more from you. Please tell me your feed back using comments. I would love to hear from you.
















8 Responses to “Pivot Tables from large data-sets – 5 examples”
Do you have links to any sites that can provide free, large, test data sets. Both large in diversity and large in total number of rows.
Good question Ron. I suggest checking out kaggle.com, data.world or create your own with randbetween(). You can also get a complex business data-set from Microsoft Power BI website. It is contoso retail data.
Hi Chandoo,
I work with large data sets all the time (80-200MB files with 100Ks of rows and 20-40 columns) and I've taken a few steps to reduce the size (20-60MB) so they can better shared and work more quickly. These steps include: creating custom calculations in the pivot instead of having additional data columns, deleting the data tab and saving as an xlsb. I've even tried indexmatch instead of vlookup--although I'm not sure that saved much. Are there any other tricks to further reduce the file size? thanks, Steve
Hi Steve,
Good tips on how to reduce the file size and / or process time. Another thing I would definitely try is to use Data Model to load the data rather than keep it in the file. You would be,
1. connect to source data file thru Power Query
2. filter away any columns / rows that are not needed
3. load the data to model
4. make pivots from it
This would reduce the file size while providing all the answers you need.
Give it a try. See this video for some help - https://www.youtube.com/watch?v=5u7bpysO3FQ
Normally when Excel processes data it utilizes all four cores on a processor. Is it true that Excel reduces to only using two cores When calculating tables? Same issue if there were two cores present, it would reduce to one in a table?
I ask because, I have personally noticed when i use tables the data is much slower than if I would have filtered it. I like tables for obvious reasons when working with datasets. Is this true.
John:
I don't know if it is true that Excel Table processing only uses 2 threads/cores, but it is entirely possible. The program has to be enabled to handle multiple parallel threads. Excel Lists/Tables were added long ago, at a time when 2 processes was a reasonable upper limit. And, it could be that there simply is no way to program table processing to use more than 2 threads at a time...
When I've got a large data set, I will set my Excel priority to High thru Task Manager to allow it to use more available processing. Never use RealTime priority or you're completely locked up until Excel finishes.
That is a good tip Jen...