How to get defect list of a month. E.g want to get defect logged in the Month of May 2022.
Hello @Varun Kumar K ! Welcome to the Atlassian Community!
You're going to want to set up filters based on Jira Query Language (JQL).
The query you want will look like the following:
type = Bug AND (created >= StartOfMonth() AND created <=EndOfMonth())
That's going to give you the list of bugs for all projects within the current month. For a specific month, put in dates instead of StartOfMonth() and EndOfMonth().
Here's some references to JQL:
https://support.atlassian.com/jira-software-cloud/docs/what-is-advanced-searching-in-jira-cloud/
Hope this helps!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.