hi, we need to ORDER BY two parameters: estimated date and priority in the same filter.
Is is possible? if so, how is the regular expression for his filter?
our actual advance search is:
project = XXXXX AND issuetype in (Story, Task) AND (labels != YYYYY OR labels is EMPTY) AND (resolution is EMPTY OR resolutiondate >= -14d) ORDER BY "Estimated Date"
Hello,
It should be like this:
project = XXXXX AND issuetype in (Story, Task) AND (labels != YYYYY OR labels is EMPTY) AND (resolution is EMPTY OR resolutiondate >= -14d) ORDER BY "Estimated Date" , priority
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.