Does anyone know if there's a way in Jira to highlight cards that are taking longer than an expected amount of time? We have the `Days in Column` feature turned on, but we feel that it's not obvious enough. Is there anything to make the background of the card turn red or something else a little more apparent than just the dots on the card?
Hi Jovanna
is is possible to customize the coloring of cards by making use of JQL queries
https://confluence.atlassian.com/jirasoftwareserver0713/customizing-cards-965542346.html
e.g.
updated >= -16h
Cheers
Kurt
Thank you! Do you know if it's possible to exclude weekends from that count?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if that is possible, but i was just thinking if you could for example
check the workratio field in the JQL workRatio = (timeSpent / originalEstimate) x 100, so if you have spent more time on the ticket than original estimate the ratio would show that
Cheers
Kurt
P.S. To get that working time tracking needs to be enabled at your instance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! I created a query that turns cards red if they've been in a certain status for more than 5 days:
project = TR AND issuetype in (Bug, Story) AND status in ("Being Developed", "Blocked", "In PR") AND cf[11007] = Web AND !(status changed after -5d)
Nice to haves now:
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.