Hi, Dear Community!
I have a Partner multi-select field.
I have automation, which should provide access when the Partner name, for example, X.
But it should not provide access when the partner name is X, Y, Z, only when it is X.
Couldn't get the JQL, which will work only in that case.
Also can't exclude the rest partner's name, as there are more than 100 values.
Thanks in advance.
Hello @Gor Greyan
Try the following JQL
"Partner name" = X and "Partner name" not in (Y,Z)
This would give you the result you want.
Ariel.
Hi @arielei
Thanks for the answer, but as I mentioned, I can't exclude the rest values, as I have more than 100 values, and it is being added again and again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Gor Greyan
I understand you issue.
So what i would do is:
1. Create a JQL filter.
after that:
1. Create an schedule automation
2. Run a branch on JQL: "Partner Name" = X
2. Do if on branch if {{issue.Partner name.size}} equals 1
3. add it to var.
Then, run a web rest api call to update the saved filter with those values.
so for example, the filter will be: "Key in (A-1,A-2,A-3)".
keep in mind that you will probably need to do some adjustments on the syntax before saving it as a filter.
Hope that helps.
Ariel.
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.