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 just found out recently, that a filter did not show many issues as espected.
This costed my company some grief and me a log of explaning and support, both internal and towards Atlassian.
Bug Report: https://jira.atlassian.com/browse/JRASERVER-67177
Please vote for this, I think its critically for all JIRA Admins/Users - that issues does not show up in a filter as expected.
Thanks for the links, Francis !
Well Atlassian closed the Issue with:
"Hello all,
This kind of behaviour is present for multiple JQL cases e.g. custom fields, labels, projects and is an expected, designed behaviour hence this issue will not be considered a bug.
Cheers,
Pawel, Jira Developer"
, and though I am disappointed, I have learnt now that:
PROJECT = CUSTOMER1
will return all issues, where as
PROJECT = CUSTOMER1 AND Classification not in ("Patch Management")
needs to be written as
AND Classification AND (Classification not in ("Patch Management") OR classification is empty)
to actually show all issues where "Patch Management" is not a value for the Classification Field . So It seems for every negation on fields and labels etc, EMPTY need to be taken in account.