Filter out issues that were deployed last year

Priyanka Gupta May 23, 2023

Hello,

I am creating some dashboards for the business and starting with an Issues report that the dashboard will pull the data from. In that Issues report, I want to filter out issues of which the status was moved to "Deployed" last year. Can anyone help me with this?

Thank you,

Pri

2 answers

1 vote
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 23, 2023

Hi @Priyanka Gupta -- Welcome to the Atlassian Community!

Please try using the CHANGED operator with your JQL: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-operators/#Advancedsearchingoperatorsreference-CHANGEDCHANGED

For example,

project = myProjectName
AND NOT status CHANGED TO Deployed DURING (startOfYear(-1), endOfYear(-1))
AND status = Deployed

Please note this would include things deployed before last year and during this year, so adjust this to meet your needs.

Kind regards,
Bill

0 votes
G subramanyam
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 23, 2023

Hi @Priyanka Gupta welcome to the Atlassian community.

You may try out this filter:  status = deployed AND createdDate >= 2022-01-01 AND createdDate < 2023-01-01 AND priority = high

Priyanka Gupta May 23, 2023

Hi G! Thank you for your response. The filter above will create a report of all issues "Deployed" last year instead of a report that excludes all issues "Deployed" last year correct? If so, I am looking for the latter - report that excludes. 

Like G subramanyam likes this
G subramanyam
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 23, 2023

That query will filter out issues that were moved to the "Deployed" status last year and that have a certain priority.

Kelly Arrey
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 26, 2023

@G subramanyam Your filter returns High Priority issues currently in Deployed Status which were created last year. Please see Bill's suggestion above which takes into account when the issues were transitioned to Deployed Status. 

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events