I want to display the next 5 issues that are apart of a specific board that are not flagged in Confluence using the JIRA issues macro. I know how to use JQL to filter the specifc issues I would like to display however the issues are displayed in order based on their key not based on the order they are in on the JIRA board. This board is use to hightlight the next tasks that need to be worked on however to accurately display this in confluence I need to be able to replicate the order that is shown in JIRA. Any help with solving this issue would be really appreciated.
Hi Bernie,
In the JIRA Issues macro in Confluence, just add an ORDER BY statement to your JQL filter.
If you want to order by key (as you mention in the question), write the following:
Project = <your project> AND <any other criteria> ORDER BY Key
You can specify the sort order by adding ASC (a>z) or DESC (z>a) if that might be an additional requirement.
Oh - and if you want to order as they are on the JIRA board, write ORDER BY Rank
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.