I want to display all issues in a project except for one component, is this possible and how to I do this using JQL?
Current filter: project = CSC ORDER BY Rank ASC
Component to remove: CSC Data Issue
I tried project = CSC IS NOT component = CSC Data Issue but this is not a working string
Any ideas would be much appreciated!
Thanks,
Tim
Hi Tim,
Try this: project = CSC and (component != "CSC Data Issue" or component is empty)
thanks! that worked, now I need to filter out 2 components, the other one is "CSC Idea Space"
any ideas on how to do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! I am clearly a newbie but I appreciate you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this:
project=CSC and component != "CSC Data Issue"
You need to surround the component name with quotes when it includes spaces.
That will retrieve only the issues where the Component field has a value specified and that value is not the one in your filter. Do you also want to retrieve issues where there is no value in the Component field? In that case you would need this
project=CSC and (component != "CSC Data Issue" or 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.
@Trudy Claspill thanks! that worked, now of course I need to filter out 2 components, the other one is "CSC Idea Space"
any ideas on how to do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What @John Funk said. :)
Ironically, my initial response used the "not in" option and then I changed it to != because you mentioned only one Component value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have two components i need to remove from a pie chart i've created. I've not added them in my saved filter query. But when i create the pie chart in my dashboard i see those 2 components there because the pie chart is built with all components
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Yemi Lawal
<EDIT>
I see that you actually did post your own new Question.
Please post your new question in a new Question post, rather than adding to an existing post that has been answered and is over a year old.
In your new post please provide the details of your scenario.
What is your hosting type?
Provide a copy of the actual filter you are using.
Show us a screen image of the resulting pie chart and point out where the Components you excluded in your filter are appearing.
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.