How do I create a task board for a specific set of work items?
![]()
I'm trying to create a (web UI) task board that shows a specific set of stories and work items. The WIs all have the same iteration (which is shared with many other work items), but a unique tag, and a unique parent/ancestor hierarchy. They do not share a work item category.
How do I create a task board that only shows those work items?
I've tried applying filters to the view config but those work with varying degrees of success.
|
Accepted answer
![]()
Try with an expression filter on tags: you can do a NOT in front of the filter.
E.g. "!tags:scm". This filters out all workitems without the SCM tag. You can also use multiple tags in the expression. Just separate the expressions with space. Evan Hughes selected this answer as the correct answer
Comments The WIs that I want to see are tagged with 'scmrun401candidate'. If I set the quick filter to be "!tag:scmrun401candidate" all items are removed from the task board. I see the same behaviour if I remove the '!'. When I set the view's config to '!tag:scmrun401candidate' or 'tag:scmrun401candidate' all work items appear to be shown. I've raised bug 219840 and bug 219836. Is this as simple as a typo? eg tags vs tag I'm using 3.0.1.2 and I can get Colors to work on WIs by using tags:mytagname, not tag:mytagname as you've shown above. The ! operator also works as expected (!tags:mytagname). My mistake! With the full 'tags' keyword it works as expected! Damn! I spent 3 hours trying to get this stuff to work, and all because of a stupid typo. I'll close those work items. Sorry Evan for my typo in my answer. I have corrected it for all followers. |
2 other answers
![]()
filter is the one which can pull out the specific tagged workitems.
however in plan views, I understand that the way filter works is the exact opposite of what you are looking for.. applying a filter saying filter : tags:scm will show you all workitems which do not have the tag scm by filtering out the "scm" "tagged" workitems.. so a not so neat way of getting it to work is to apply tags filter on all other tags available for you. however when a new tag gets added, this view needs modification on its filters.. not very neat as i said earlier.. |