Forums

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

How do I change the colour of a card if it has been in progress for X amount of time?

benjamin.ugbene
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!
April 21, 2022

I'd like to indicate how long a ticket has been in progress by changing the colour of the card.

2 answers

1 accepted

1 vote
Answer accepted
Bill Sheboy
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 Leaders.
April 21, 2022

Hi @benjamin.ugbene 

Possible solutions depend upon what you mean by "in progress" and if you are using a Company-managed project:

1) If "In Progress" is an actual status value and you are using a company-managed project, you could set a card-color filter with JQL such as:

status = "In Progress" AND status CHANGED TO "In Progress" BEFORE -2d

 

2) If instead you have multiple different status values (and board columns) with a category of "in progress" you could use a card-color filter of:

statusCategory = "In Progress" AND statusCategoryChangedDate <= -2d

 

Kind regards,
Bill

benjaminu April 23, 2022

Thanks

benjaminu April 23, 2022

I think this `statusCategoryChangedDate` is what I was after. I'll try I on Monday 

Like Bill Sheboy likes this
1 vote
Fabio Racobaldo _Catworkx_
Community Champion
April 21, 2022

Hi @benjamin.ugbene ,

there's no option to do that. My suggestion is to try to put in place an automation that, based on timing in In Progress status, will add some info to that ticket like a label.

Example :

- use Scheduled trigger that runs every hour

- Configure a JQL search like

status changed TO "In progress" BEFORE -2d

- Add Label "MyLabel" to that issue.

On board, please add Label to Card Layout ( https://support.atlassian.com/jira-software-cloud/docs/customize-cards/ )

Hope this helps,

Fabio

benjaminu April 23, 2022

Cheers

Suggest an answer

Log in or Sign up to answer