0
votes

I would like to query the current work item backlog in TFS (2017) to display stories/bugs that have been on a specific board column for 2 days or more. However, the 'Change Date' field in my query is indicative of ANY change to a specific work item (e.g., comment added to discussion, assignment/priority/story points updated...etc. I thought this would be a great place to find help for my query.

Current fields in my TFS Query:

  1. Area Path = /PathToArea
  2. Board Column IN 'X','Y','Z'
  3. Change Date <= @Today -2
1

1 Answers

0
votes

You can use the field "State Change Date" to filter the result.

By default, Board Column is mapped to the state, that means when you move a work item to a specific Board Column, the sate will also be changed accordingly. So we can track that using "State Change Date". See details here

See below example:

enter image description here