1

I currently have a query set up in TFS 2015 with the following parameters:


  • Work Item Type = [Any]

AND

  • State <> Done

AND

  • Assigned To = Derek Antrican

This is working well, but currently it will continue to show parent items that I have completed tasks for (because another tfs member has yet to complete a task for that parent). I would like to exclude parent items that have no more tasks assigned to me that are yet to be completed. So ending up with something like this:


  • Work Item Type = Task

AND

  • Work Item Type = Product Backlog,Bug IF Child Assigned To = Derek Antrican AND Child State <> Done

AND

  • State <> Done

AND

  • Assigned To = Derek Antrican

How do I implement the bold part above?

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
derekantrican
  • 1,891
  • 3
  • 27
  • 57

1 Answers1

1

I think this is what you want. You'll need to configure your query to be of type "Work Items and Direct Links" and then filter the children to be assigned to you (it's easier to use @me here):

enter image description here

Note: The separator for the "in" operator depends on your system settings. In my culture (Dutch), it's ;, but it may be different for yours.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341