Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,552,261
Community Members
 
Community Events
184
Community Groups

JQL query to get report for 5 months

Hi Team,

Please advise query to get how many reports were completed since from the last 5months.

2 answers

0 votes
Graham Twine
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.
Apr 18, 2023

Hello @tech_nagesh17 have a look at startOfMonth(), startOfWeek(), endOfMonth() etc. as described here

 

Find all new issues created in the last 5 months since the start of this month.

created > startOfMonth("-5")

 

Hi @Graham Twine 

 

I have tried with the below command, but using this command i only can see tasks completed since from last 5 months however we want to display the reports sprint wise. Is it possible to get. Please advise.

 

project = "Jira & Confluence" AND Sprint in closedSprints(-5m)

0 votes
Callum Carlile _Automation Consultants_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Apr 18, 2023

Hi @tech_nagesh17 - just to confirm, do you mean you want to report on the number of issues completed within the last 5 months?

There is no short-hand JQL for months, but you could add something like resolved >= -20w to your JQL (this will only work if your completed issues have a resolution set for them. Here, I have used 20 weeks which loosely equates to 5 months)

Or if your issues do not have a resolution set for them, you could use status changed to Done after -20w (you can change 'Done' here to match whatever resolved workflow status you want to report on)

Hi Callum carlile,

I have tried with the below command, but using this command i only can see tasks completed since from last 5 months however we want to display the reports sprint wise. Is it possible to get. Please advise.

 

project = "Jira & Confluence" AND Sprint in closedSprints(-5m)

Suggest an answer

Log in or Sign up to answer