The user is attempting to filter issues by fixed version and needs the result sorted in ascending order. However, after running the query, the result are not being filtered by the fixed version name in ascending order. Why is this happening.
project = ABC AND issuetype = Epic AND labels = 360digital AND assignee in ("1234567") ORDER BY fixVersion ASC
@Rajesh Versions are textual driven in Jira. If your versions don't have a taxonomy to order them via numerical + textual, then the order using either ASC or DESC will use an Alpha ordering.
Example:
Release Date is not available in an issue JQL because the value of Release Date is not available to the issue directly; it is only contained within the Version itself.
Screenshot demonstrating date + text mixed with just textual
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.