I want to generate a report from Jira with the below conditions.
1.Find the list of issues that "closed" in the last week.
My JQL
project = 111 AND fixVersion = 10668 and issuetype = Bug and status changed to "Done" and updated <= "-7d"
but I received the below error
incorrect dateFrom format. Use a relative date (e.g. "-8d"), or an absolute one ("YYYY/MM/DD").
2. the user-wise list of issues that were "closed" in the previous week
here is one solution
project = 111 AND fixVersion = 10668 and issuetype = Bug and (resolutiondate >= startOfWeek(-1) and resolutiondate < startofweek())
@Jack BrickeyAlthough the JQL query was successful, the search returned no results. But despite having the record in the fixed version, it still fails to retrieve the data.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you investigate issues you expected to see in the list and verify if the Resolution date is set or not?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack BrickeyYes, you are correct; none of the issues I expected have a resolution date.
I have no idea how to set the date on which the closed issues will be resolved. Please let me know if you have any other suggestions or if you can help me with it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack Brickey With the below JQL I received the issue list
project = 111 AND fixVersion = 10668 and issuetype = Bug and status changed to "Done" and (updated >= startOfWeek(-1) and updated < startofweek())
Is this the right approach?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This may also work:
project = 111 AND fixVersion = 10668 AND issuetype = Bug AND resolved >= startOfWeek(-1) AND resolved <= endOfWeek(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.