I have an automation that will add a label in specific circumstances.
My problem is in the scenario where the user is switching around values in this field. I would like the following behaviour:
I can see how to "reset" the labels field when the rule is triggered by setting it to blank, however I don't know how to preserve the other entries in the label field and only get rid of the now erroneous label.
This is possible to do, within your Action you need to:
-------------------
For clarity, this is how I created the rule:
Tested using the "Priority" field in our instance and it worked in both directions :)
Ste
It's a shame the Add/Remove values option isn't available on a custom field that is a group picker.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Curt Holley
It might be possible using "More Options" - using JSON to add/remove options from the field :)
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I might need more JSON skills for that, but I like your thinking @Ste Wright
Thanks for the tip!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it is possible via this JSON :
{
"fields": {
"labels": [
"{{customfield_yourcustomfieldid}}"
]
}
}
This should probably work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Fantastic, thanks Stephen - I tested this out and it worked. Screen shot for illustration purposes for people who come to search this post in the future. :-)
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.