Preparing your learning space...
56% through AI + Excel Projects tutorials
A project tracker shows tasks, owners, due dates, and progress so a team knows what is done and what is late. You build it in Excel and use Copilot and ChatGPT for status formulas and the timeline.
project-tracker.xlsx │ ├── Sheet: Tasks (Task, Owner, Start, Due, Status, %) ├── Sheet: Dashboard (status counts, chart) └── Module: ProjMacros (optional VBA)
A table Task with a Status dropdown.
Status drives the counts and the chart.
Create the table; dropdown Not started,In progress,Done.
=COUNTA(Task[Task])
Ask ChatGPT:
"How do I add a dropdown with Not started, In progress, Done in Excel?"
A count of tasks in each status.
Shows how much is finished.
=COUNTIF(Task[Status], A2)
Ask Copilot:
"Write COUNTIF that counts tasks where Status equals A2."
A formula that marks a task overdue if not done and past due date.
Late work needs attention.
=IF(AND([@Status]<>"Done", [@Due]<TODAY()), "Overdue", "OK")
AND(...) checks both conditions together.Ask ChatGPT:
"Write an Excel formula that returns Overdue if status is not Done and due date is before today, else OK."
Red highlight for Overdue and a progress chart.
Color and charts speed up reading.
Select the flag column, Conditional Formatting > Text that Contains > "Overdue" with red fill. Then chart the status counts.
Ask ChatGPT:
"How do I highlight cells containing the text Overdue in red using conditional formatting?"
=COUNTA(Task[Task]) =COUNTIF(Task[Status], A2) =IF(AND([@Status]<>"Done", [@Due]<TODAY()), "Overdue", "OK")
ChatGPT: "Dropdown Not started, In progress, Done." Copilot: "COUNTIF status equals A2." ChatGPT: "Overdue if not Done and due before today." ChatGPT: "Conditional format text Overdue red."
project-tracker.xlsx.Input: Task due yesterday, status "In progress". Expected Output: "Overdue". Explanation: Not done and past due.
Input: Task due yesterday, status "Done". Expected Output: "OK". Explanation: Done ignores the date.
Input: Three tasks: one Done, two In progress. Expected Output: Done 1, In progress 2. Explanation: COUNTIF separates by status.
Problem: Every task flagged. Reason: Status typed as "done" lowercase. Solution: Use the dropdown so "Done" matches exactly.
Problem: Flag stale. Reason: Workbook closed; dates are static. Solution: Reopen; TODAY recalculates on open.
Problem: Counts off. Reason: Range included the header. Solution: Select only the count cells for the chart.
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1Overdue flag formula checks?
2=COUNTIF(Task[Status], A2) does?
3How to show overdue in red?
4ChatGPT can?
Technology
Excel with AI
Lesson group
AI + Excel Projects
Progress
56% complete