Skip to main content
Guides12 min read

Excel Roadmap Template: 6 Free Layouts (2026)

Last updated:

6 free Excel roadmap templates you can build today: Gantt, swimlane, quarterly, Now-Next-Later, theme-based, and milestone. Exact columns included.

Published 2026-03-13Updated 2026-06-23
Share:
TL;DR: 6 free Excel roadmap templates you can build today: Gantt, swimlane, quarterly, Now-Next-Later, theme-based, and milestone. Exact columns included.
Free PDF

Get the PM Toolkit Cheat Sheet

50 tools and 880+ resources in a 2-page PDF. The practical companion to this guide.

or use email

Join 10,000+ product leaders. Instant PDF download.

Want full SaaS idea playbooks with market research?

Explore Ideas Pro โ†’

Why Excel for Roadmapping

Excel works for product roadmaps because everyone already has it and nobody needs onboarding. A PM at a 200-person company who needs to share a roadmap with the head of engineering, the VP of Sales, and the CTO can do it with a single spreadsheet link. No licenses, no permissions, no "request access" emails.

The honest trade-off: Excel is strong on flexibility and scoring, weak on collaboration and automation. Use it when you need full layout control and formula-driven prioritization. Consider a dedicated tool when your team grows past 5-6 PMs or when manual updates start taking more than 30 minutes a week.

This guide covers six Excel roadmap layouts, each with exact column structures you can build in under 20 minutes. For the foundational thinking behind what a roadmap should contain, the guide to building a product roadmap covers that ground first.


Roadmap Template in Excel (Step by Step)

Before picking a layout, set up the shared infrastructure every Excel roadmap needs. This takes about 10 minutes and prevents the most common issues.

Step 1: Set Up Your Workbook

Create a workbook with three sheets from the start:

  • Roadmap - your main planning data
  • Gantt - the visual timeline view
  • Backlog - unsorted ideas for future quarters

Name them clearly. "Roadmap Q3 2026" beats "Sheet1."

Step 2: Build the Core Data Sheet

In the Roadmap sheet, create these columns:

ColumnHeaderExample values
AInitiative Name"Self-serve onboarding"
BThemeGrowth, Retention, Platform
CPriorityP0, P1, P2, P3
DStatusProposed, Planned, In Progress, Shipped
EOwner"Sarah (PM)"
FStart Date2026-07-01
GEnd Date2026-09-30
HReach5000 (users affected)
IImpact2 (scale: 0.5, 1, 2, 3)
JConfidence0.8 (scale: 0.5 to 1.0)
KEffort3 (person-months)
LRICE Score=H2\I2\J2/K2

Freeze row 1 (View > Freeze Rows) and column A so headers stay visible when you scroll. Add data validation dropdowns for Theme, Priority, and Status columns to prevent typos. Select the column, go to Data > Data Validation, choose List, and enter your values comma-separated.

Step 3: Add Conditional Formatting

Color-coding Status and Priority makes the roadmap scannable in under 5 seconds. Select the Status column (D), go to Format > Conditional Formatting, and set:

  • Proposed: light gray fill
  • Planned: light blue fill
  • In Progress: yellow fill
  • Shipped: green fill
  • Blocked: red fill

Apply the same pattern to Priority (C): P0 = red text, P1 = orange, P3 = gray.

For the RICE Score column, use a 3-color scale. Green for scores above 50, yellow for 20-50, red below 20. This immediately surfaces your best opportunities.

Step 4: Protect Formulas

Lock column L (RICE Score) so nobody accidentally overwrites the formula. Select column L, right-click > Format Cells > Protection > check Locked. Then go to Review > Protect Sheet and leave data cells editable. Without this, someone will delete a formula within the first two weeks.


6 Excel Roadmap Templates

Template 1: Gantt Chart Roadmap

Best for teams with predictable release cycles where dates matter.

Sheet structure:

Sheet 1 (Data): Standard roadmap columns A-L as described above.

Sheet 2 (Gantt): Build the visual timeline here.

  • Column A: Initiative Name (pull from Sheet 1 with =Roadmap!A2)
  • Row 1: Month headers starting in column B. Format: "Jul 2026", "Aug 2026", etc. Use actual dates (first of each month) formatted as MMM YYYY.
  • Rows 2+: Each row is one initiative.

Conditional formatting formula for the Gantt bars:

Select the date range (B2 to the last month column, across all initiative rows). Add a new conditional formatting rule with formula:

=AND(B$1 >= $F2, B$1 <= $G2)

Where F is Start Date and G is End Date from the Data sheet. Set the fill color to match your theme (cyan, blue, or color-coded by Theme). Cells within an initiative's date range fill automatically when you update the dates in Sheet 1.

Column widths: Set date columns to 30px. Wide enough to see color, narrow enough to fit 12 months on one screen.

Use the RICE Calculator to validate your scoring before entering values in column L. Consistent scoring matters more than precise numbers.


Template 2: Swimlane Roadmap

Best for multi-team or multi-product planning where you need to show parallel workstreams.

Sheet structure:

  • Column A: Quarter (Q3 2026, Q4 2026)
  • Column B: Team/Stream (Mobile, API, Growth, Platform)
  • Column C: Initiative Name
  • Column D: Priority
  • Column E: Status
  • Column F: Owner
  • Column G: Key Milestone
  • Column H: Notes

Layout approach:

Group rows by Team using the Data > Group feature. Each team gets its own expandable section. This lets stakeholders collapse teams they do not care about and focus on their workstream.

Swimlane visual alternative:

For a true visual swimlane, dedicate one row per team. Use merged cells across columns to show initiative spans. Color each team's row a different background. This is more visual but harder to sort and filter, so keep a separate data sheet for analysis.

Apply conditional formatting to highlight when two teams have P0 items in the same quarter. This flags resource conflicts early.


Template 3: Quarterly Roadmap

Best for planning presentations and quarterly business reviews. Gives executives a clear picture of what is happening when.

Sheet structure:

Create a 2D grid:

  • Rows: Themes (Growth, Retention, Platform, Infra)
  • Columns: Quarters (Q3 2026, Q4 2026, Q1 2027, Q2 2027)
  • Each cell: the 1-3 initiatives planned for that Theme + Quarter intersection

How to build it:

  1. Set column widths wide enough for 2-3 lines of text (around 200px each)
  2. Set row heights to 80-100px to accommodate multiple items per cell
  3. In each cell, list initiative names. Use Alt+Enter for line breaks within a cell
  4. Apply a background color to each Theme row for visual separation
  5. Add a small RICE Score next to each initiative name in parentheses

Formula to auto-populate:

If your Data sheet is maintained as the source of truth, use COUNTIFS to show item counts per cell:

=COUNTIFS(Roadmap!B:B,"Growth",Roadmap!C:C,"Q3 2026")

This gives you a count in a summary header. The initiative names still need to be added manually or via a FILTER formula if your Excel version supports it.


Template 4: Now-Next-Later Roadmap

Best for teams that want to communicate priorities without committing to specific dates. The format that most PMs default to for stakeholder communication.

Sheet structure:

Three column groups, each with sub-columns:

NowNextLater
InitiativeThemeInitiativeThemeInitiativeTheme

Simpler version (recommended to start):

  • Column A: Now (initiatives you are actively working on)
  • Column B: Next (committed for the next 1-2 quarters)
  • Column C: Later (under consideration, not committed)
  • Column D: Theme (applies to all)
  • Column E: Notes

Each column holds 5-8 items maximum. If "Now" has more than 8 items, you are doing too many things.

Conditional formatting:

Color each column a different shade: Now = blue, Next = teal, Later = gray. This makes the priority gradient immediately visible when the sheet opens.

Update cadence: Review "Now" weekly, "Next" monthly, "Later" quarterly. Items move left as you approach them, not right as you miss them.

For more on this format, see the Now-Next-Later roadmap type to understand when it fits best.


Template 5: Theme-Based Roadmap

Best for executive communication and strategy alignment. Organizes work by strategic bets rather than by team or timeline.

Sheet structure:

  • Column A: Theme (your 3-5 strategic priorities for the year)
  • Column B: Objective (what success looks like for this theme)
  • Column C: Key Initiatives (2-4 per theme)
  • Column D: Quarter
  • Column E: Status
  • Column F: Owner (team, not individual)
  • Column G: Key Metric (how you will measure this theme)
  • Column H: Notes

How to structure themes:

Themes should be outcomes, not feature categories. "Improve onboarding conversion by 15%" is a theme. "Onboarding" is a feature bucket. Good themes connect directly to business goals from your product strategy.

Group rows by Theme using borders or row background colors. Each theme section should have a summary row at the top showing total items, % complete, and target metric.

Formula for % complete:

=COUNTIF(StatusRange,"Shipped")/COUNTA(StatusRange)

Format this as a percentage. Add a small data bar conditional format to show progress visually within the cell.


Template 6: Milestone Roadmap

Best for tracking major releases, launch events, and contractual commitments. Focused on dates and dependencies between deliverables.

Sheet structure:

  • Column A: Milestone Name
  • Column B: Type (Release, Launch, Checkpoint, External Deadline)
  • Column C: Target Date
  • Column D: Status (On Track, At Risk, Complete, Delayed)
  • Column E: Owner
  • Column F: Dependencies (list of other milestone names that must complete first)
  • Column G: RAID Notes (Risks, Assumptions, Issues, Dependencies)
  • Column H: Days Until Due (formula: =IF(C2>TODAY(), C2-TODAY(), "Past"))

Conditional formatting for days remaining:

Select column H and apply:

  • Less than 14 days: red fill
  • 14-30 days: orange fill
  • Over 30 days: green fill

This creates a visual urgency indicator without any manual updates.

Gantt overlay:

Add columns I onward for weekly dates. Use the same date-range conditional formatting from Template 1 to show milestone durations. Milestone roadmaps often have fewer items (10-20 milestones), so a Gantt overlay is practical and fits on one screen.

Browse roadmap templates if you want pre-built versions for different formats and tools.


Excel Roadmap Examples

These are the most common real-world Excel roadmap patterns senior PMs use. Each solves a specific communication problem.

Example 1: Quarterly Gantt for an Engineering Leader

Engineering leads want to see capacity against commitments. Build a Gantt (Template 1) where each row is a team, not an initiative. Color cells by initiative, not by team. This shows which initiatives each team is working on at a glance, and where teams are overloaded.

Example 2: Executive Summary for a QBR

Executives want outcomes, not feature lists. Use the Theme-Based template (Template 5) with a cover sheet showing: 3-5 themes, one-sentence objective per theme, RAG status indicator (Red/Amber/Green), and a single metric per theme. Limit it to one page. Everything else is backup.

Example 3: Product Launch Milestone Tracker

For a major release with marketing, legal, and sales dependencies, use the Milestone template (Template 6) with an extra column for "Team Responsible" and color coding by team. Add a dependencies column linking milestones with arrows using Excel's cell comment or shape features.

Example 4: Startup MVP Roadmap

Early-stage teams often need just three things: what is being built, when, and by whom. Use a simplified Quarterly template with columns: Feature, Quarter, Owner, Status, and Notes. Remove scoring columns until you have enough data to calibrate them. The guide to your first product roadmap covers the thinking for this stage.

Example 5: Portfolio Roadmap for Multi-Product PMs

Managing two or more products? Add a "Product" column as the first column in any template. Use Excel's Group and filter to show one product at a time or all at once. Color-code by product to see resource allocation across the portfolio.


Prioritization Formulas for Excel Roadmaps

Excel's formula engine is its biggest advantage over visual tools. Build scoring directly into your roadmap.

RICE Score:

=H2*I2*J2/K2

Where H = Reach, I = Impact, J = Confidence, K = Effort. Sort descending to see highest-value items first. The RICE framework explains how to calibrate these inputs.

ICE Score:

=I2*J2*(1/K2)*10

Simpler than RICE. Impact * Confidence / Effort, scaled to 0-10. Useful when you do not have reliable Reach data.

Weighted Custom Score:

=SUMPRODUCT(B2:E2, $B$1:$E$1)

Where row 1 contains weights summing to 1.0. Adjust weights each quarter as strategy shifts.

Composite Rank:

Calculate RICE, ICE, and Weighted scores in separate columns. Add a final column averaging the rank position across all three:

=AVERAGE(RANK(L2,L:L,0), RANK(M2,M:M,0), RANK(N2,N:N,0))

Items with consistently high ranks across all three frameworks are your safest prioritization bets. Items where the three frameworks disagree by more than 10 positions are worth discussing in your planning meeting.


When Excel Is Not Enough

Excel works until it does not. Common signals that you have outgrown a spreadsheet roadmap:

Dependency tracking. Excel has no native way to model "Feature B is blocked by Feature A." You end up drawing arrows on screenshots or maintaining a separate dependency log.

Real-time stakeholder updates. Stakeholders who need the latest status between your weekly updates will either request access (and edit things accidentally) or work from stale information.

Multiple team views. Engineering wants dates and effort. Executives want themes and outcomes. Building and maintaining separate views manually takes significant time.

Sync with Jira or Linear. If your engineers work in Jira or Linear, your Excel roadmap will drift from reality within a week unless someone manually syncs it.

For teams hitting these limits, the PM Tool Picker helps match your situation to the right roadmap platform.


If Excel is not the right fit for your workflow, the same planning structure applies in other tools:

Frequently Asked Questions

Is Excel still a good tool for product roadmaps?+
Excel works well for solo PMs and small teams who need maximum flexibility and zero tool cost. For teams larger than 5-6 people needing real-time collaboration, a web-based tool is usually worth the upgrade. Excel's strengths are formula-driven scoring and full layout control.
How do I create a Gantt chart in Excel for a roadmap?+
The fastest method: set up date columns across row 1 (one per month or week), list initiatives in column A, then use conditional formatting to fill cells when a date falls between Start and End. Formula: =AND(B$1 >= $StartDate, B$1 <= $EndDate). For a chart-based Gantt, use a stacked bar chart with an invisible start-offset series and a colored duration series.
What columns should an Excel roadmap have?+
At minimum: Initiative Name, Theme, Priority, Status, Owner, Start Date, End Date. Add Reach, Impact, Confidence, and Effort if you want RICE scoring. Add a RICE Score column with =H2*I2*J2/K2. Freeze row 1 and column A so headers stay visible as the sheet grows.
Can I share an Excel roadmap with my team?+
Yes. Save to OneDrive or SharePoint for real-time co-editing. For read-only sharing, export to PDF or publish via Excel Online. For stakeholder presentations, copy the Gantt view into a PowerPoint slide rather than sending the raw workbook.
What is the difference between a Gantt roadmap and a Now-Next-Later roadmap in Excel?+
A Gantt roadmap shows initiatives on a date-based timeline using bar spans across months. A Now-Next-Later roadmap uses three columns (Now, Next, Later) with no specific dates. Gantt is better when dates matter (releases, contracts). Now-Next-Later is better when you want to communicate priorities without committing to exact timing.
Free PDF

Want More Guides Like This?

Subscribe to get product management guides, templates, and expert strategies delivered to your inbox.

or use email

Join 10,000+ product leaders. Instant PDF download.

Want full SaaS idea playbooks with market research?

Explore Ideas Pro โ†’

Put This Guide Into Practice

Use our templates and frameworks to apply these concepts to your product.