1

Possible Duplicate:
Can I search and filter by Milestone completion date?

I would like to get a list of all cases that are assigned to me in milestones with upcoming completion dates or due dates.

My current method is to just sort by milestone:

due:"now...next week" assignedto:"me" orderby:"FixFor" 

But I would like not to worry about cases that are placed in milestones that I don't will have to work in 3 or 4 weeks.

Expressed in the search syntax I'm looking for something like:

due:"now...next week" OR FixFor:"now...next week" assignedto:"me" 

Anybody have a trick up there sleeves or should this be made into a feature request?

flag

closed as exact duplicate by adambox♦♦ Feb 15 at 16:30

1 Answer

0

You can put the list of fixfors in your search string

due:"..1w" assignedto:"me" (milestone:"Widget 1.0"
OR milestone:"Widget 2.0" OR milestone:"Whatsit 1.0" OR
milestone:"Whatsit 1.5")

notes:

  • you can use milestone or fixfor as the axis
  • date ranges can be a number followed by d (day) w (week) m (minute) h (hour) and can be open-ended
  • you can specify the exact milestone with milestone:=123 where 123 is the ixFixfor or use substring matching to get any one that contains a string, e.g. milestone:"Widget 1*"

You could also write a plugin which implements IPluginSearchAxis to add the milestone date axis you're looking for.

link|flag
Thanks for the hints about the due-axis using date ranges (...1w). I would like to setup my search without knowing the specific milestones, so using that axix won't work for me. Again the solution is to write a plugin :-) – Emil Rasmussen Aug 5 2010 at 9:28
If you need any help with the plugin, send me an email with the contact link at the bottom of the page! – adambox Aug 5 2010 at 13:03

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