I am not able to pull 3 months of data that is march April and May month reports for ITSD Project that is jira service management project, through JQL or by manual, in JQL though I give resolved>=-90d or resolved >= "2024-03-01" AND resolved <= "2024-06-10", I get only may month and June 10 days data, not getting march april month data. If I try to pull individual data of particular month I am able to get individual months day but not able to get 3 months data at together. Need your help here refer to the screenshot.
Hi @Vyshnavi S ,
Please user below JQL to get all issues resolved between 01-Mar-2024 and 10-Jun-2024. Make use of braces ( ) properly to filter out the issues.
Project = ITSD AND (resolved >= '2024-03-01' AND resolved <= '2024-06-10') AND Assignee in (user1, user2, user3)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Vyshnavi S ,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes page 1 has june 10 days ticket later on every pages has may tickets
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes march april month data is there for its project for required assignees,individually if I pull data for particular month its coming but f0r 3months together its not coming
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
CHECK THESE ARE THE TICKETS FOR MARCH AND APRIL WE ARE GETTING WHEN PULLING INDIVIDUALLY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Vyshnavi S
I don't understand your need @Rilwan Ahmed show you a JQL to retrieve all tickets that were resolved from 01 March 2024 to 10 June 2024.
In your next comment, via your screen that we have more than 1000 tickets, so system work as expected .
If you need to see all tickets resolved in March first, replace order by created desc and add this:
ORDER BY resolved ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Duc Thang TRAN I followed your suggetsion I gave order by resolved asc with resolved date march 10 to june 10, U can see I am getting tickets from march to april
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Duc Thang TRAN all the tickets displaying are only 2 months tough the query is correct dunno how, may be issue with backend have raised ticket with atlassian
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.
all screenshots belong to one query only, this comment is not allowing me to copy paste jql query so have attached screenshot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Vyshnavi S
Ok, now I see what you mean. Jira Cloud will provide you with only 20 pages of your query results.
So, if you want to see more than 1000 results, you need to either:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The JQL will display only 1000 results. Seems you have more than 1000 rows. So its better to divide your query month wise.
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.