Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I'm looking to create a filter where issues are not assigned to the project lead. Another way this could work is if the current assignee is not the same as the reporter:
- project = 'my project' and assignee != reporter
- project = 'my project' and assignee != projectlead()
Something along those lines. Any suggestions?
Hi,
You can give a try on:
https://marketplace.atlassian.com/plugins/pt.lt.lfcribeiro.jira.jqlLTFunctions
It lets you run SQL staments in a JQL functions(executeQuery() )
Thx
Scripted field doesn't work because the scripted field is not rendered until the browser displays the issue (I think). Our solution was to have a number field set to -1 on create, then when we assign the issue back to the requester, we set it to 0. Then the number field is searchable. Note: This only works if you know when you are setting it back to the requester through post functions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Scripted field will work fine providing you set an indexer. Better to use a jql function though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not know how many project leads you have per project but if your environment is simple(ie small number of project leads) then you could create groups for each project containing the project leads and then use the membersOf function like:
assignee not in membersOf("projectx-project-leads")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Again, if the number of project leads is small, you could just list them like
assignee not in ( name1, name2 )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For the first query you should create a scripted field, e.g. scriptedfield1 which returns "1" if the assignee equals the reporter else it returns "0"
Then you could use
project = 'my project' and scriptedfield1 != "1"Similar can be done for project lead
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.