I have a JIRA board with different issues each having different start dates - the start date is NOT when I have recorded the issue on the JIRA, it is the date on which the issue started. On JIRA, the issues might have been recorded 1 day later or 1000 days later.
Now I want to create aging based on Current date - Start date and use it on a KANBOARD board swimlane. I want to show different swimlanes as Aging less than 100 days, aging less than 500 days etc as different swimlanes on the Kanban board.
How do I do that?
Hi @Dilip T K and welcome to the community!
The JQL will look something like this: "Start Date" <= -100d
This will show all issues older than 100 days.
If you sort your swimlanes newest to oldest issues top to bottom you don't even have to worry about restricting the Date to something like "between 100 and 500 days old". Your issue will automatically appear in the first swimlane it matches. Therefore if you have
First Swimlane = "Start Date" <= -1000d
Second Lane = "Start Date" <= -500d
Third Lane = "Start Date" <= -100d
An issue that is 1004 days old will be in the First lane, an issue that is less than 1000 but more than 500 days old will be in the second and so forth.
If you're new to setting up Swimlanes here is the official documentation: Configure swimlanes | Jira Software Cloud | Atlassian Support
Thanks for the prompt response Heilmann. I have set up the following swimlanes and every record seems to go to the Start Date <= 3650d swimlane. Any ideas on why this may be happening?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Obviously me too - the order you chose (oldest to newest) is the correct one. So largest to smallest number top to bottom like in the screenshot gives you the correct results ;) well done! -> I edited my original reply so folks aren't confused.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A little late but sometimes it's better late than never :)
Have you seen an app that I have developed - https://marketplace.atlassian.com/apps/1230969?tab=overview&hosting=cloud
it's free and it allows you to setup when start date happens (e.g. what transitions trigger setting start date) and it then calculates your work item age and stores it in a field and you can display that field on your cards on your kanban board. Is this the sort of thing you're looking for?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.