User Guide

Creating a Portfolio

A Portfolio is a named collection of Jira issues grouped and visualised across multiple views (Table, Gantt, Board, etc.). You define the scope using manual filters or JQL.

Creating a New Portfolio

  1. Portfolio (PPM) → click New Portfolio
  2. Enter a Portfolio Name
  3. Click Filter to define scope:
    • Manual Filter - use dropdowns to select Projects, Issue Types, Statuses, Assignees
    • JQL Filter - write a Jira Query Language expression for complex scope
  4. Click Apply to preview matching issues
  5. Click Save - the portfolio appears in the sidebar under Portfolios

Important: Save immediately after creating. Unsaved portfolios are lost when you navigate away.

Manual Filter vs JQL

MethodBest ForExample
Manual FilterSimple project/status/type scopesAll open Stories in Project A
JQLComplex cross-project queriesEpics due this quarter across 3 projects

Example JQL Scopes

-- All active epics across a program
issuetype = Epic AND status != Done ORDER BY priority DESC

-- High-priority items due this quarter
priority in (Highest, High) AND due >= startOfQuarter()

-- All in-progress work across multiple projects
project in (PROJ-A, PROJ-B, PROJ-C) AND status = "In Progress"

Editing Portfolio Scope

  1. Open the portfolio
  2. Click Settings (gear icon)
  3. Modify the filter or JQL
  4. Click Save

Sharing Portfolios

All users with Member or higher role on the Jira project can see saved portfolios. Portfolios are shared - coordinate edits to avoid overwriting each other's changes (the app uses last-save-wins).

Deleting a Portfolio

Settings → Delete Portfolio → Confirm

Deletion is permanent and cannot be undone.