Skip to main content

Portfolio Dashboard

This tutorial builds a portfolio dashboard — a single report that shows the status of multiple projects at a glance. The dashboard includes a RAG summary table, a cost and schedule variance bar chart, and a project-level slicer for drill-down.

Architecture: Portfolio blueprint (Pattern 3 from Multi-Project Reporting) — one blueprint, one section, one row per project, manually maintained.


Part 1 — Design the Portfolio blueprint

Step 1 — Create the blueprint

  1. Go to Report Forge → select your portfolio project (create one if needed: e.g. "PMO Portfolio").
  2. Click + New blueprint.
  3. Name: Portfolio Dashboard.
  4. Description: Monthly portfolio summary — one row per active project. Maintained by project PMs.
  5. Click Create.

Step 2 — Add the Project Status section

  1. In the blueprint design view, click + Add section.
  2. Name: Project Status.
  3. Display mode: Grid (repeating rows — one per project).
  4. Click Create section.

Step 3 — Add section fields

Add the following fields to the Project Status section:

FieldTypeOptions / Config
Project NameSelectOptions: list all active projects
Project ManagerText
Programme PhaseSelectDesign, Procurement, Construction, Commissioning, Complete
Overall RAGRAGInclude "Not set"
Schedule Variance (%)PercentMin: -1.0, Max: 1.0 — Warn if outside ±30%
Cost Variance ($)CurrencyCurrency: AUD
Key HighlightsTextareaMax 300 chars
Major RisksTextareaMax 300 chars
StatusSelectOn Track, At Risk, Critical, On Hold, Completed
Last UpdatedDateDefault: today

Step 4 — Add computed fields

Add two computed fields to classify performance:

Field reference syntax

Computed field formulas reference other fields in the same section by their field key (set in the blueprint), wrapped in square brackets [fieldKey] or curly braces {fieldKey}. Both syntaxes are equivalent. The field key for "Schedule Variance (%)" is ScheduleVariancePct — set this in the field's Key property in the blueprint designer.

Schedule Status Label:

IF([ScheduleVariancePct] >= 0, "On Programme",
IF([ScheduleVariancePct] >= -0.1, "Minor Delay",
IF([ScheduleVariancePct] >= -0.2, "Significant Delay", "Critical")))

Is At Risk (computed toggle):

OR([OverallRAG] = "Red", [Status] = "Critical", [Status] = "At Risk")

Step 5 — Publish the blueprint

Click Publish → version note: "Initial portfolio dashboard blueprint".


Part 2 — Create and populate an edition

Step 6 — Create the portfolio edition

  1. Go to Editions+ New edition.
  2. Select the Portfolio Dashboard blueprint.
  3. Edition name: PMO Portfolio — May 2026.
  4. Reporting period: 01 May 2026 – 31 May 2026.
  5. Click Create.

Step 7 — Enter project data

In the Project Status grid:

  1. Click + Add row for each active project.

  2. Fill in all fields:

    • Project Name, PM, Phase
    • Overall RAG (Red/Amber/Green)
    • Schedule Variance % (e.g. -0.05 for 5% behind)
    • Cost Variance $ (positive = under budget, negative = over budget)
    • Key Highlights (2–3 bullet points as free text)
    • Major Risks
    • Status
  3. Add one row per project — for this tutorial, assume 8 projects.

tip

Assign one Contributor per project — each PM enters their own row. Use the Assignees setting on the edition to assign all PMs, then each PM can filter the grid to their project row and update it.

  1. Submit for review when all rows are complete.

Part 3 — Build the Output Template

Step 8 — Open the Output Designer

  1. Open the Portfolio Dashboard blueprint → Output Designer.
  2. Click + New output template → name: Portfolio Dashboard PDF → format: PDF, A3 Landscape.

Step 9 — Cover page

  1. Add page → name: Cover.
  2. Add text component: PMO Portfolio Dashboard — May 2026.
  3. Add text component: Prepared by: PMO Office | Report Date: {{[sections.ProjectStatus.LastUpdated]}}
  4. Add KPI row with 3 cards:
    • Total Projects: COUNT([sections.ProjectStatus.rows])
    • At Risk / Critical: COUNTIF([sections.ProjectStatus.rows.Status], "At Risk") + COUNTIF([sections.ProjectStatus.rows.Status], "Critical")
    • On Track: COUNTIF([sections.ProjectStatus.rows.Status], "On Track")

Step 10 — RAG Summary table

  1. Add a new page → name: Project Status.
  2. Add a heading: Project Status Summary.
  3. Add a Table component.
  4. Bind to Project Status section.
  5. Add columns:
ColumnFieldWidth
ProjectProject Name20%
PMProject Manager15%
PhaseProgramme Phase12%
StatusOverall RAG (RAG chip)8%
ScheduleSchedule Status Label12%
Cost VarianceCost Variance ($)12%
Key HighlightsKey Highlights21%
  1. Sort by: Overall RAG descending (Red first), then Project Name ascending.
  2. Add conditional formatting:
    • Row background: RAG source → Overall RAG field (Red/Amber/Green row tints).

Step 11 — Cost and Schedule variance chart

  1. Add a new page → name: Performance Charts.
  2. Add a heading: Cost & Schedule Variance by Project.
  3. Add a Bar chart component.
  4. Configure:
    • Chart type: Grouped bar
    • X-axis: Project Name
    • Series 1: Schedule Variance (%) — left Y-axis, colour blue
    • Series 2: Cost Variance ($) — right Y-axis, colour orange
  5. Add Reference lines: Y=0 on both axes (horizontal baseline).
  6. Add conditional bar colouring:
    • Schedule Variance: Red if < -0.2, Amber if < -0.1, Green if ≥ 0
    • Cost Variance: Red if < 0, Green if ≥ 0

Step 12 — Add a project slicer for drill-down

  1. Still on the Performance Charts page, add a Slicer component above the chart.
  2. Bind the slicer to the Project Name field.
  3. Slicer type: Chip selector (allows multi-select).
  4. Connect the slicer to the bar chart — when the slicer is active, the chart shows only selected projects.

This gives report viewers the ability to filter down to specific projects without leaving the report.

Step 13 — At-risk projects callout

  1. Add a new page → name: At-Risk Projects.
  2. Set page visibility rule:
COUNTIF([sections.ProjectStatus.rows.IsAtRisk], true) > 0
  1. Add a heading: Projects Requiring Attention.
  2. Add a Table → filter: Status = "At Risk" OR Status = "Critical" OR OverallRAG = "Red".
  3. Columns: Project Name, PM, Overall RAG, Major Risks, Status.
  4. This page only renders when at-risk projects exist.

Part 4 — Generate and export the PDF

Step 14 — Approve and generate

  1. After the edition is approved, click Generate output.
  2. Select the Portfolio Dashboard PDF template.
  3. Click Generate.
  4. Preview the output — verify:
    • Cover page KPI counts are correct.
    • RAG table shows all projects with correct row colouring.
    • Bar chart shows all 8 projects with variance bars.
    • At-Risk page renders if any projects are At Risk.
  5. Click Download PDF to export.

Distributing the portfolio report

For automated monthly distribution:

  1. Configure a Trigger on approval automation (Blueprint settings → Automation).
  2. Delivery: Email to the board distribution list.
  3. Output template: Portfolio Dashboard PDF.

Each month, when the portfolio edition is approved, the PDF is automatically emailed to the board.