You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That query will filter out issues that were moved to the "Deployed" status last year and that have a certain priority.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.