Rally Software

 View Only
Expand all | Collapse all

Automatically hide accepted user stories that are more than 1 year old

  • 1.  Automatically hide accepted user stories that are more than 1 year old

    Posted Jun 27, 2016 03:41 PM
    My organization's Kanban board is very full of completed user stories. Is there a way to automatically hide Accepted user stories that are older than some arbitrary time. The goal is to pare down the number of Accepted cards on the Kanban board. Thanks!


  • 2.  Re: Automatically hide accepted user stories that are more than 1 year old
    Best Answer

    Posted Jun 28, 2016 01:28 PM
    Sure, try this in the query window
    ((ScheduleState != "Accepted") OR (AcceptedDate > "2016-03-01T23:59:59.000Z"))
    for example. You may want to play with the dates as you see fit.
    For more reference:
    https://help.rallydev.com/use-grid-app-queries#dates


  • 3.  Re: Automatically hide accepted user stories that are more than 1 year old

    Posted Jun 29, 2016 09:02 AM
    Thank you Seshadri. This works just great!