Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I'm tryin g to create a filter and have it Order By just story ID but it seems to order BY StoryID and all the sub tasks for that story. Can I do this? Thanks.
Hi Iarias,
Can you share the filter you have built so far? And where it is not working as you intend it to?
Hi John - Here's my filter.
status = "To Do" OR status = "In Progress" OR status = Resolved ORDER BY issuetype ASC
It's ordering by story first but when there's sub-task under the story it order the sub-tasks before the story. Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is going to order the issues alphabetically - so if the issuetype starts with a value that is after Sub-task (like Task), then it will put the sub-tasks first. You need to order by another field if you want a different result.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you need to order by something other than Issue type
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So what exactly is it that you want to see?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do an ORDER BY KEY asc
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.