How is the Sprint Tracking List of Scrum Tasks Sorted?Issue How is the Sprint Tracking List of Scrum Tasks Sorted?ResolutionThis sorting is based on when it was Created. So newer records will show up on the bottom of the list. This is hard-coded in the "SprintTrackingCommonService" Script Include. There is the following line of code for the sort: record.query = 'story=' + record.sysId + '^ORDERBYsys_created_on'; If you wanted to change this to something else such as the Short Description, you could by doing something like this: record.query = 'story=' + record.sysId + '^ORDERBYshort_description';