The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

2 votes
Rudy Holtkamp
Community Champion
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.