Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way in TFS in VS2010 to specify that a particular iteration is the current one, and then return that for use in queries similar to the way @Project works? If not is there a way to do sub-queries in TFS work item queries?

share|improve this question
same issue in 2012! '"TF20036" The macro '@@Iteration' is not recognized. Available macros include @@Me, @@Project, and @@Today.' – felickz Jan 4 at 20:26

4 Answers

up vote 7 down vote accepted

I'm afraid that there is not such a macro. I personally just have a few "X in current iteration" team queries and then edit those queries to point to the new iteration path at the start of each iteration.

share|improve this answer
Same here. Likewise with WIT templates (from the power tools). – Richard Berg Jan 19 '10 at 15:07
Yeah, that's what we're doing too – Glenn Slaven Jan 19 '10 at 22:26

I am going to try using a standard name for the current iteration such as 'Current'. The queries for this iteration would all reference this name. Once the iteration is completed, I will rename it using a naming convention that includes the date for example and the next iteration would then be created with the name 'Current' (or renamed to this if it already exists). The queries would then return results from the new iteration.

- 2010-49
- Current
- 2010-51

I am not sure whether renaming iterations this way will cause any conflicts or confuse the data warehouse for example but this would save on having to create or modify a heap of queries at the start of each iteration.

I would be very interested to hear feedback on this approach!

share|improve this answer

I have found that Telerik's free Work Item Manager provides an elegant solution to this problem.

Just define your queries as you usually would but leave out any filters relating to iterations (note that this also applies to areas). There is a treeview pane named 'Area/Iteration Filters' that will add extra, recursive filtering based on the iteration (or area) that you select there.

Note that if the pane is not visible then you can enable it via the View menu.

alt text

share|improve this answer

Query for Sprint in a date interval as shown here:

    Team Project    =   @Project
And Work Item Type  =   Sprint
And Start Date  <=  @Today
And Finish Date >=  @Today
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.