user3092325
user3092325

Reputation: 1

Need JQL query to find stories which is/was "in progress" for more than 30 days

I need JQL query to find stories which is/was "in progress" for more than 30 days. Basically any story if it is spending or ever spent in "in progress" more thab 30 days.

Have come up with this one below but it also catches the stories in "closed" status for more than 30 days.

issuetype = story and status was in ("IN PROGRESS") AND NOT status CHANGED AFTER -30d

Upvotes: 0

Views: 3061

Answers (1)

Tharindu Rajapaksha
Tharindu Rajapaksha

Reputation: 112

Try this JQL query. This would give you all the Story-type tickets which are in "In Progress" status for the past 30 days.

issuetype = Story AND NOT status CHANGED AFTER -30d AND status="In Progress"

Upvotes: 0

Related Questions