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
I am trying to pull in a search for Issues type of Story, or Label, with the status of Done.
example i am trying to use
issuetype in (Story) OR labels in (Assurance) AND status in (Done)
as an add to this can multiples be used in this scenario also
like more than one issuetype, or more than on label. or is this too extreme analytics for Jira queries?
eg
issuetype in (TechDebt, "TechDebt Subtask") OR labels in (tech-debt, tech-debt-to-address, tech-debt-to-withdraw, tech-debt-triage, tech-improvements, tech_debt, techdebt, TECHDEBT, TechDebt) AND status in ("In Progress", "BA in Progress", "Design In progress")
Thanks All
@Martyn Pope,
No, that JQL should be fine. I think the only thing you want to watch out for is how you structure your JQL.
In the example you shared above:
"issuetype in (TechDebt, "TechDebt Subtask") OR labels in (tech-debt, tech-debt-to-address, tech-debt-to-withdraw, tech-debt-triage, tech-improvements, tech_debt, techdebt, TECHDEBT, TechDebt) AND status in ("In Progress", "BA in Progress", "Design In progress")"
The issue which will be returned are:
The status condition you have is not being applied to the very first portion of your JQL, so if you want it to, you need to change your JQL like so:
(issuetype in (TechDebt, "TechDebt Subtask") OR labels in (tech-debt, tech-debt-to-address, tech-debt-to-withdraw, tech-debt-triage, tech-improvements, tech_debt, techdebt, TECHDEBT, TechDebt)) AND status in ("In Progress", "BA in Progress", "Design In progress")
Brilliant thank you so much that has worked a treat!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to hear it!
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.