Hi
Let me explain my requirement:
For instance, I have 50 tickets where 45 tickets are assigned to the active sprint before or on 1st Day of sprint where as 5 tickets are assigned to sprint on 2nd Day onward.
This is required on Jira search page:
I need a flag in Search Page, with 1 & 2 i.e. 45 tickets has flag = 1 and 5 tickets has flag = 2
"Created" date column is available with every ticket that tells the creation/assignment date of the ticket with sprint.
Logic of flag column would be
if Created <= SprintStartDate then flag = 1
else if Created > SprintStartDate then flag = 2
How can I achieve this functionality.
Thanks