How to create a filter listing issues created my specific month. not by date range like Jan- 50 Feb 45 March 48
You can filter it like this
project = PJnamehere and (createdDate >= 2024-08-01 AND createdDate <= 2024-08-30)
That will bring all tickets created in August.
JQL doesn't have a MONTH value to pass using the created date.
This is a good page to understand the date search using JQL:
https://www.testmanagement.com/blog/2023/09/using-dates-and-date-operators-with-jira-jql/
regards
To create a JQL filter in Jira Cloud that lists issues created in a specific month, you can use the created field with the startOfMonth() and endOfMonth() functions. However, Jira's JQL doesn't directly allow querying by month names. Instead, you need to specify the month and year numerically. You can refer @Aaron Pavez _ServiceRocket_ suggestions.
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.