How can i print the entries in a list sorted by priority - if i print them as a card, they stay in order, but i want to print them in a list.
Hi @Annika Wäsch, welcom to Atlassian Community.
You can use JQL in standard search with ORDER BY like this
project = ITS order by priority
or this, if you want to revers the order
project = ITS order by priority ASC
Then you can click on Export in the upper right corner and select Print list in the dropdown menu. You will get a print ready list like this example:
Press Ctrl-p on you keyboard to print it:
If you want it accessible from you board
You will now have access to the list in the left menu.
TimK
Hallo Tim, danke für die schnelle Hilfe. Ich habe die Verknüpfung bereits hinzugefügt, aber die Reihenfolge stimmt nicht mit der auf dem KanbanBoard überein. Mit der Verknüpfung kann ich nicht sagen, dass die Aufgabe einen Rand nach unten/oben haben soll - das funktioniert nicht (ich kann darauf klicken, aber es passiert nichts)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Annika Wäsch, I had to run your text to a translation (German to English), so I hope it translated correctly
Hello Tim, thank you for the quick help. I have already added the link, but the order does not match the one on the KanbanBoard. With the link, I cannot say that the task should have a border down/up - that does not work (I can click on it, but nothing happens)
I'm not fully sure what problem occured here. Is it the shortcut you created that doesn't work?
Let's focus on the order first. The JQL I sent will correctly order by Priority, but your filter linked to your board might not have order by priority included. This can be because you use ORDER BY RANK in the filter which is recommended. If you are able to drag&drop board elements vertically such ranking is activated. If so you can try this instead to include ranking.
project = ITS order by rank, priority
Check your filter connected to your board and use the same ORDER BY in the filter you use for your shortcut, but add ",priority" at the end.
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tim, I'll try to say again briefly what the problem is. On the board, I can see the issues, but then when I want to print the list, the order of the tickets is different.
First Picture ist from the Board/ seceond from the print list
At the print list should be at first GHHAUS-842 and then GGHAUS-804 but it isn´t
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Annika Wäsch, yes this can occure if the order used in Board Filter differ from the order used for List filter. E.g. Rank is involved.
Are you able to attach the JQL used for both the Board and the List in a new comment? It will be helfull to investigate why the result differs.
TimK
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.
Google translate: Maybe you can guide me then I'll find it for sure
Hi @Annika Wäsch, in your board click on the ellipsis menu in the upper right corner and select Configure board
Settings for the board will be displayed:
Under General (blue circle) you will find that under Ranking (red cicle) a text indicates if the bord uses ranking or not.
Select Edit filter Query (green circle) and
Tips: If the filters (JQL 1 and 2 above) are identical in issues returned you might first try using the board filter as your filter for print. Check if that show correct order.
TimK.
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.
Hello @Tim Kopperud ,
can you tell me if I can also show the column "Comment" in the list view? Unfortunately, I can't find the column with "Comment"
Greetings Annika
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Annika Wäsch, columns relates to Jira fields. Comments are not fields though, so I don't think you are able to display those for each record in a list.
To solve this I think you will need to add a custom field, e.g., named "Last comment", and have a script engine (Power Script or Scriptrunner) to populate that field every time a comment is added on an issue.
I have done something similar earlier using Power Script for a custom field name "Last commented by" where the script engine updated "Last commented by" for every comment added on an issue. The purpose was to use it on a board card, so we could on the sprint board see who had the last comment, and if another person than the assignee had commented a color was set on the card.
But this setup needs to be regarded as advanced though.
TimK.
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.