The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Order by Age of issue

BowenG
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 12, 2016

I have a custom field to calculate the age of an issue using a SIL script. The script is 

if (isNotNull(resolutionDate))
{
return resolutionDate - created;
}
else
{
return currentDate() - created;
}

The calculation works fine, but when i try to order by age in filters, the ordering does not seem to work. I am using the interval range searcher, but have tried the exact interval searcher as well (with a reindex) but it still won;t order properly. 

Any ideas as to how to make the ordering work? 

thanks in advance, 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
vitaliy zapolskyy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 13, 2016

issue gets a new Age value on update. Suppose you've created issue A a day before yesterday. its Age was calculated a day before yesterday, i.e. Age =0 days. 

Yesterday you've created another issue B. And you've updated it today. Its Age was calculated today and Age =1 day for the issue B.

if you'll update all issues in one go, then you'll get more or less reliable Age values.