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.
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.