f.e.
1) Jira Project A with 2 FixVersions: 201806 and 201809
2) Jira Project B with FixVersion 201806
3) Jira Project C with FixVersion 201809
How can I get a list of all Projects that are releasing in FixVersion 201809 ?
The result has to be : A & C
You will need to write JQL to include all of the fix versions explicitly.
Versions are project-specific items, whatever you call them, so what you'll need to write is actually going to look like "fixversion in (201809, 201809)". In the background, Jira will be running "fixversion in (Project-A-201809, Project-C-201809)".
You can write a JQL
fixVersion = 201809
And then in the issue navigator view select the "column" project and then you can see the list of projects for the mentioned fixVersion and you can also take an export of the search results and filter on the only unique values for the project.
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.