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.
I'm using the ScriptRunner functions completeInSprint, incompleteInSprint, removedAfterSprintStart, and addedAfterSprintStart together in order to determine the items that were committed to, completed, incomplete, added and incomplete during a sprint. Each function takes as inputs the Board Name and (optional) Sprint Name.
For example - committed stories can be found by: (issueFunction in completeInSprint("Board", "SprintName") OR issueFunction in incompleteInSprint("Board", "SprintName") OR issueFunction in removedAfterSprintStart("Board", "SprintName")) AND issueFunction not in addedAfterSprintStart("Board", "SprintName")
* Note the first three expressions are grouped together.
Anyway, as you can tell, the Board and SprintName are repeated numerous times. I'd like to be able to 'import' those values similar to being able to use a function='fName' or via a text replace, or something like that within the JQL.
Any thoughts?