Availability:
Status | ||||
---|---|---|---|---|
|
Status | ||||
---|---|---|---|---|
|
Category:
This custom field streamlines the process for users or customers to efficiently prioritize issues or service requests. Priority is determined through a straightforward evaluation of two key dimensions: "Impact" and "Urgency."
Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Field configuration
Info |
---|
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.
Info |
---|
Find out more: https://help-seibertmedia.atlassian.net/wiki/spaces/ACF/pages/41058312/Shared+stuff+DRAFT#Choosing-Color-based-on-Value |
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
WSJF (Weighted Shortest Job First)Calendar fieldJira Service Management (JSM)
Info |
---|
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.
Code Block |
---|
${fieldName}.priority: number ${fieldName}.impact: number ${fieldName}.urgency: number |
Info |
---|
Find further information here https://support.atlassian.com/jira-software-cloud/docs/find-specific-issues/ |
Example: a search for all issues with a priority equals 1
Code Block |
---|
"Priority Matrix.priority" = 1 |
Data Structure (Automation)
Info |
---|
Note |
---|
To ensure accurate calculations, it's essential to set both the |
To set the value via automation, you need the following object structure, where value
marks the priority.
Code Block |
---|
{ "impact": [0-2], "urgency": [0-2], "value": [1-5] } |