How to stop the rearrangement of filtered results

Валентин Стоянов
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 30, 2024

Hello!

 

I will get straight to the point.

So I am using filters to grab issues from different projects.

These projects have different issue keys.

I have no problem filtering and pulling the required issues from all of the projects, the issue however is that whenever a new issue is being pulled from the filter, it gets sorted between the other issues.

What I need is a way to stop the automatic ordering or sorting of the issues pulled by the filter and instead have every new issue that is being pulled by the filter to be placed in the current last place.

Bear in mind that these issues that are being pulled by the filter are not newly created issues, they are issues which status is changed to be within the scope of the filter and then it gets pulled.

1 answer

2 votes
Rudy Holtkamp
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 30, 2024

Hi @Валентин Стоянов and welcome to the community,

Filters are sorted by the 'ORDER BY' clause at the end of your filter.

E.g. assignee = currentReporter() ORDER BY created ASC

This will order the issue by the created date . You can use different fields to order by: 

assignee = currentReporter() ORDER BY created, updated ASC

I hope this helps.

Suggest an answer

Log in or Sign up to answer