I want to search JIRA issues from closed Sprints. But I want to search for Sprints within a certain period. Like say Oct 2020 to March 2021
Hi,
I think this thread can help you:
Hi @KB Pinglia You can use the below JQL to search the issues in Closed sprint for the specific date interval
project = "XYZ" AND Sprint in closedSprints() AND (created >= "2020-10-01" AND created <= "2021-03-1")
You can update the created dates based on your search query.
Let me know how it goes or you face any issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks I'll try it out. and let you know. I was thinking is there anything you can set inside "closedSprint()"
For example is there a function like this: closedSprint("closed after 2020-10-01")?
I'm searching for certain issues for certain users. And I got the filter to work, but I need to narrow it now by selective Sprints. I could do it the long way Sprint = (1, 2, 3, 4, etc.) But if I can do it by setting a certain period, then it would be quick update for future uses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think that will work, but you can the below document for the sprint functions and other available options.
Let me know how it goes
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.