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
Hi there,
I am attempting to pull records that match:
I am continuing to get 0 records returned on tests though I specifically set up the attached ticket to match all criteria. Anyone see something I messed up here?
Screen cap included to demonstrate
It is because you are searching on labels. When you do that you either have to include issues that do not have a label like this:
duedate < -30d AND (labels != Post_Survey OR Labels is EMPTY) AND resolution was "done"
The other option is to negate the label like this:
duedate < -30d AND NOT (labels = Post_Survey) AND resolution was "done"
You are a complete rock star Mikael! Thank you so much - I never knew this field was handled different in JQL Automation scripts :) Found exactly one issue as it should. Amazing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is not just in automations that you have to do this. Anytime you are doing a JQL that you want to exclude a label or component from you have to include when the label/component is empty.
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.