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.
Community moderators have prevented the ability to post new answers.
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.