Within Jira, how do I collate all projects into a single document, as a multiple project tracker? Thus providing a weekly project update, capturing the status of all projects. Therefore, to sum-up I want to gather all weekly updates into one single report for multiple projects.
You can try JQL and get the list of all updated issues:
project in ("Project A","Project B","Project C") AND updated >= -7d
Also, if you want to get all the changes visible in a report, you can check Issue History for Jira app. My team developed it as a journal of all activities, and it is possible to choose several/all projects you have (JQL or filter).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Matt Hawkins welcome to the community. You could do this via a filter, you would just simply group all your issues by project. re: project in (a,b,c) and resolution is not EMPTY etc etc etc.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.