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
Hello everyone
I would like to create a query in which the tickets in two projects create the cause as a selection field and the date from to.
When I use this query, tickets that are not in this period are displayed. I need to have from 01.01.2023 to 31. 03.2023.
What is the correct query for this?
Thank you for your support.
JQL:
project in (X, XL) AND issuetype in (xxx, xx) AND "Ursache (intern)[Select List (cascading)]"=Funktionsfehler OR "Ursache (intern)[Select List (cascading)]"="Beschädigtes Bauteil (z.B. verkratzt, verbogen)" or "Ursache (intern)[Select List (cascading)]"="Qualität Bauteil (mechanisch/optisch/dimension)" or "Ursache (intern)[Select List (cascading)]"= Verschleiss AND created >= 2023-01-01 AND created <= 2023-03-31
I see multiple or statements in the clause, put the all in one bracket related clause (See bold brackets ())
project in (X, XL) AND issuetype in (xxx, xx) AND ("Ursache (intern)[Select List (cascading)]"=Funktionsfehler OR "Ursache (intern)[Select List (cascading)]"="Beschädigtes Bauteil (z.B. verkratzt, verbogen)" or "Ursache (intern)[Select List (cascading)]"="Qualität Bauteil (mechanisch/optisch/dimension)" or "Ursache (intern)[Select List (cascading)]"= Verschleiss) AND created >= 2023-01-01 AND created <= 2023-03-31
Or you would need to provide the date range in all or clauses.
Hello @Marc Koppelaar
Perfect. It fits like this. Many thanks for your support.
Now I have my JQL as it should be.
BR Vreni
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.