On this page
Field configuration
Before starting the field configuration, please follow the instructions for creating custom fields
Step 1: Set a name and description
Provide a good name for the new custom field. Make it descriptive, concise, and easy to understand for others who will use it. Avoid using ambiguous or overly technical terms.
Step 2: Setup size and color based on value
The field allows you to choose from a pre-defined set of field sizes.
You may also set different colors for different values.
The priority value is derived from the following matrix, considering the dimensions of "Impact" and "Urgency".
Field view and edit
Set dimensions
You have the flexibility to establish priority levels by adjusting the "Impact" and "Urgency" using a slider, ranging from "low" to "high".
Preview
Related Use Cases
-
The priority party —
User Story: Planning APPtoberfest with Priority Matrix
So our party team has to plan the APPtoberfest and set up a service desk for it. Colleagues can submit requests with their ideas and can prioritize them.
But when it comes to priority, it can be hard to find the most important tasks.
Jira Service Management (JSM)
Before you can add a custom field for Jira Service Management (JSM) projects, you first need to setup the custom field
Then follow this guide to use the field in the request form or the portal view
JQL expression
The Priority Matrix field has three fields that can be accessed.
${fieldName}.priority: number ${fieldName}.impact: number ${fieldName}.urgency: number
Find further information here https://support.atlassian.com/jira-software-cloud/docs/find-specific-issues/
Example: a search for all issues with the highest priority (1).
"Priority Matrix.priority" = 1
Data Structure (Automation)
To ensure accurate calculations, it's essential to set both the impact
and urgency
values when configuring the priority. Failure to do so may result in inadvertent overwriting of value
during recalculation processes.
To set the value via automation, you need the following object structure, where value
marks the priority.
{ "impact": [0-2], "urgency": [0-2], "value": [1-5] }