how can I get reporting on a list of tasks in the last quarter sorted by their epics?
Hi @Hasan Zubairi -- Welcome to the Atlassian Community!
What do you mean by "reporting" and by "in the last quarter"?
For example, if you wanted to list the issues resolved in the last quarter (Oct - Dec 2022), you could use JQL to find them, substituting in your project name.
project = myProjectName
AND resolved >= startOfMonth(-3)
AND resolved < startOfMonth()
AND issueType IN (story, task, bug)
ORDER BY "Epic Link" ASC
To learn more about such searches, please look here: https://support.atlassian.com/jira-software-cloud/docs/use-advanced-search-with-jira-query-language-jql/
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.