Forums

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

How can I query which work items were kicked back from one state and into a previous state?

Jeff Davis
Contributor
September 22, 2020

Say something is in the In Test column, and then it fails testing and is sent back to the In Progress column. Can I build a query to determine which stories in a sprint were in a certain state, and then sent back to a previous state?

1 answer

1 accepted

1 vote
Answer accepted
Ivan Lima
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.
September 22, 2020

Hey @Jeff Davis, you can achieve this through the CHANGED operator. Therefore, assuming the underlying statuses of your columns "In Test" and "In Progress" are respectively the same, you can have something like:

type = story and sprint = <your sprint> and status changed from "In Test" to "In Progress"

It's worthwhile to take a look at the advanced search docs

I hope it helps,
IL.

Jeff Davis
Contributor
September 23, 2020

Hi, Ivan,

That's exactly what I was looking for. Thank you so much especially for providing a template query. I built what I needed based on that.

Thanks again,

Jeff

Like Ivan Lima likes this

Suggest an answer

Log in or Sign up to answer