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.
Hey everyone,
I'm trying to find tickets from a list of part numbers from the beginning of this year to April 26th 2023, but it seems like it's still taking tickets that were made in 2022.
Here's my jql:
created >= 2023-01-01 AND created <= "2023-04-26 23:59" AND project = PROD AND "Part Number[Short text]" ~ 10-210-01-16 OR "Part Number[Short text]" ~ 10-210-00-16-INV OR "Part Number[Short text]" ~ 10-210-01-00-INV ORDER BY created ASC
Looking for some help with my project, I'm not sure why I'm not getting exactly the dates that I need.
Hi @isaiah_thompson ,
I think you are missing some parenthesis symbols around the part number selection in your JQL query.
Try this
created >= 2023-01-01 AND created <= "2023-04-26 23:59" AND project = PROD AND ("Part Number[Short text]" ~ 10-210-01-16 OR "Part Number[Short text]" ~ 10-210-00-16-INV OR "Part Number[Short text]" ~ 10-210-01-00-INV) ORDER BY created ASC
Best regards,
Kris
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.