You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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