Is it possible to build an automated Gantt Chart in Excel for Agile Project Management?
Our team is moving toward an Agile/Scrum hybrid, but we don't have a budget for Jira or Monday.com yet. I'm trying to build a Gantt chart in Excel using Conditional Formatting that updates based on 'Start Date' and 'Duration.' Is there a way to make it show 'Percent Complete' as a progress bar inside the cells, and can I automate the dependencies?
2025-01-05 in Project Management by Christopher Evans
| 17414 Views
All answers to this question.
Building a Gantt chart with Conditional Formatting is a classic Excel hack. You’ll want to create a calendar header and use a formula like =AND(Date>=Start, Date<=(Start+Duration)) to trigger the fill color. To show progress, you can nest an additional Conditional Formatting rule using "Data Bars." For dependencies, you can use simple formulas (e.g., Task 2 Start = Task 1 End + 1). While it’s not as robust as a dedicated PM tool, it’s incredibly effective for small teams. Just make sure to use "Named Ranges" for your project phases to make the formulas easier to read.
Answered 2025-01-08 by Mary Taylor
How are you planning to handle 'Sprints' in this setup? Gantt charts are usually more 'Waterfall.' For Agile, you might want to add a 'Sprint Number' column and use a Pivot Table to see the workload.
Answered 2025-01-11 by Jason Bourne
-
Jason, I’m actually combining them. The Gantt chart shows the overall roadmap, but I’ve added a column for Sprints that feeds into a separate "Burndown Chart" on another tab. It’s a bit of a hybrid "Scrumban" approach. The hardest part is making sure the Gantt bars shift when a sprint is delayed. I’ve started using the WORKDAY function so it automatically skips weekends, which makes the timeline much more realistic for the development team.
Commented 2025-01-14 by Christopher Evans
Check out the built-in "Agile Gantt Chart" template in Excel. It already has most of the conditional formatting logic set up, so you don't have to start from scratch.
Answered 2025-01-16 by Linda Carter
-
Linda is right. The templates are a great starting point, though I usually end up stripping them down to make them less "heavy" for larger project files.
Commented 2025-01-19 by Mary Taylor
Write a Comment
Your email address will not be published. Required fields are marked (*)

