Hi guys,
I have epic 'Epic1'
This epic has a custom field 'SalesRepresentative'.
I want to create a custom filter and search only epics which contain people 'SalesRepresentative' = 'Anna'
'Anna' - is not a text field, but the user.
Could u plz advise what should I put into Filter query?
I believe it is some bug in jira!
The resolution: today I created a new epic and assigned a guy in the SalesRepresentative field. After that the custom filter suddenly began to work properly.
Hope it helps someone!
You can use this simple JQL :
project = <ProjectName> AND type = <Issue Type> AND 'SalesRepresentative' is EMPTY : this gives the issues which don't have any value in the custom field.
project = <ProjectName> AND type = <Issue Type> AND 'SalesRepresentative' is not EMPTY
This JQL gives the issues which have values in that custom field.
Thanks,
Allena
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
but I need to filter the fields that contain the user, for example 'Anna Smith'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = <ProjectName> AND type = <Issue Type> AND customfield_10000 = john.doe
Customfield_10000 is the cusmfield_ID
Could you Please try with this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issuetype = Client AND "SalesRepresentative[People]" = 5d404b47813f380dab350ab4
does not work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried in Basic search instead of JQl.
Once please try that as well, so we will get to know if that's the issue with JQL or not
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.
You can use such JQL request
issuetype = Epic AND "SalesRepresentative" IN (username1, username2, username3)
If you want to use only one user in search query you can use such JQL string:
issuetype = Epic AND "SalesRepresentative" = username
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, it's possible, that there are no hints.
Please, try query like:
issuetype = Epic AND "SalesRepresentative" = "Anna Surname"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this does not work - I still do not see the Sales Representative with that name when apply the filter with this
But the name is exist:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, let's try workaround.
Switch search to basic mode
Then select needed field, from +More
Then select in field needed user.
And then Switch to JQL. It will show your needed request, which you can use for other users
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The basic search works.
And I got the query:
"SalesRepresentative[People]" in (5d404b47813f380dab350ab4) AND project = CSM007
But when I put it in the Filter query > Save > go to Board > Select the custom filter > it shows nothing at all
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.
Hi, I also have a similar problem.
From custom filter i want to add a filter that target a specific label. This should be the easies use case in Jira world but unfortunately it doesn't work.
I tried from issues and there the filter works. I saved the filter but this is not available to be used in custom filters for the backlog. Trying to copy the same query from issues to custom filter it doesn't work. How is that possible? Is it the same tool?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.