Hello!
I have multiple projects that have epics linked to ideas in a Discovery project. I want to be able to do 2 things:
This might be a lot, but wondering if there's a tutorial about this.
Thanks!
Hi @antonio_bojorges 👋
Welcome to the community!
For displaying report of closed issues per sprint per project i suggest you to try Time In Status for Jira add-on. Primary propose of our tool is generating reports that show how much time each issue has spent on each status, assignee, team, or project. Also we have Sprint Performance Report which contains various metrics for each sprint.
I would be happy if you had a look at it!
Try Time In Status for Jira for free.
You can also book a live demo - we'll show you the application inside out and answer all your questions.
Have a nice day and happy sprinting 🥳
welcome to the community!
If you're open to solutions from the Atlassian Marketplace, I think you might like the app that my team and I are working on, JXL for Jira.
JXL is a full-fledged spreadsheet/table view for your issues that allows viewing, inline-editing, sorting, and filtering by all your issue fields, much like you’d do in e.g. Excel or Google Sheets. It also comes with a number of so-called smart colums that aren't natively available - like e.g. the issue's last sprint - as well as a number advanced features, including support for (configurable) issue hierarchies, issue grouping by any issue field(s), sum-ups, or conditional formatting.
With these, you can build a view like e.g. this in just a couple of clicks:
This is really just one of virtually endless possible reports; you can also group by any other issue field(s), use different sum-up techniques, etc. etc.
Any questions just let me know,
Best,
Hannes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's Mary from Planyway for Jira: roadmap, workload, time tracking.
Creating a report in JIRA to see all issues with the sprint in which they were closed, and automating the process to track the number of issues and story points closed per assignee, per project, per sprint involves a combination of JIRA's querying capabilities, possibly some custom scripting or integration with JIRA's API, and leveraging JIRA's reporting and dashboard functionalities.
project = "YourProjectKey" AND issuetype in (Epic, Story, Feature) AND status = Closed
For automation, consider using JIRA's REST API. You can write scripts (in Python, for example) to query JIRA's REST API to fetch issues based on your criteria, extract the relevant sprint information, and compile the data into reports.
/search
endpoint with your JQL query to get issues.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.