Hi I created a filter for a new Dashboard, here the link of the filter I set up
project = PIPPO AND labels in (A, B, C) ORDER BY project ASC
Not sure why but the filer is not excluding the rest of the LABELS.
Any clue how I can fix the Filter ?
Thanks
Welcome to the community Veruska.
Can you explain your use case a bit further? do you want to show issues which must have those three labels? in that case you will need to use the following JQL:
project = PIPPO AND labels = A AND labels = B AND labels = C
For your information, labels in (A, B, C) will show you all issues which has any of the label A, B or C.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.