The Greenhopper cards show how many days the card has been in its current column. I would like to create a filter that show all issues that have been in a column for more than 5 days. It seems this would be possible since the cards show the data I would need to calculate on.
The business reason behind this is to create a focused list for a weekly management meeting to review "exception" issues that might need some management attention. This would be easier than hovering over every card in a complex board with a large number of cards.
There does not appear to be a good way to accomplish this.
This should not be the accepted answer. Alexander Shocke gave a good answer below.
I would suggest using During though. If you use Not Changed DURING(-5d,now()) you select issues that have not left the column. Before will show anything that moved to WIP before that, even if it left the column and returned to WIP.
JQL:
status = "In Progress" AND status changed to "In Progress" before "-5d"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Days in this columns and days since last status change are different things. First does not reset when the card goes to another status and comes back.
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.
Oh, you can even do it generally for all columns:
status CHANGED BEFORE "-5d"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Status changed before -5d and not status changed after -5d
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.
I ended up using changed before & not changed after solution for the quick filter I needed. It doesn't match the days in column and it is very easy play around by doing a back and forth between statuses resetting the timer, but better than nothing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 Agreed. It would be super helpful to be able to setup a quick filter that showed tickets that have spent a long time in a column. I like the dots along the bottom, but it's hard to quickly scroll through larger boards and see which are the aging ones.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello I need that when I export the information to Excel I can have a column with the value of the days that a card has been in a column. It's possible? How could I do it or what syntax could I use? Tks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello! I need to do that too. Did you get any solution? Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello! I need to do that too. Did you get any solution? Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lots of people want this but it is not included in Jira. May be available in a plug-in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Time in Status for Jira Cloud could be a solution for you.
This app is developed by my team to generate reports of how long issues stayed in the specific column (status). It provides the possibility to view data as number tables or as charts and export them as XLSX or CSV files.
Also, using this add-on you can get graphical and numerical data at the single issue view tab.
Hope you find it helpful.
Best Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @John Corwith ,
It is not possible out-of-the-box in Jira. You can calculate it by coding which parses issue history rest api json for each issue. Or you can search for marketplace apps which does the same for you.
One of them is Status Time app developed by our team. It provides reports on how much time passed in each status as well as status entry dates and status transition count.
Once you enter your working calendar into the app, it takes your working schedule into account too. That is, "In Progress" time of an issue opened on Friday at 5 PM and closed on Monday at 9 AM, will be a few hours rather than 3 days. It has various other reports like assignee time, status entry dates, average/sum reports(eg. average in progress time per project). And all these are available as gadgets on the dashboard too.
Here is the online demo link, you can see it in action and try.
If you are looking for a free solution, you can try the limited version Status Time Free. Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dave Clay & @Brandon Gill have a look at my answer below (https://answers.atlassian.com/questions/144207/answers/46082054)
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.
Hello Ben I need that when I export the information to Excel I can have a column with the value of the days that a card has been in a column. It's possible? How could I do it or what syntax could I use? Tks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Julio_Cortes That question is related to this one, but is a completely different question. Please ask it as a separate question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 I need a daily standup meeting dashboard to quickly look and see who's on what during the sprint. I want to drive that discussion by showing any cards that are sitting in a column for more than some number of days. That data has to be in
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might consider using the 'Updated Date' field to your advantage. See the screenshot below. Bear in mind that comments to issues change the updated date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.