I have an automation rule that infers what to set for the checkbox field but it is only 'setting' that value and overwrites any existing checked boxes.
Can I read in any preset values to a variable and then include them in the 'set' rule? I have tried this using a smart value for a variable and then the new value but the UI doesn't allow this.
Does anyone have another secret?
Thank you!
Hello @Celina Kincaid
To update the field, instead of overwriting it, you need go to down to the "Advanced Edit" section and provide the JSON there.
{
"update": {
"Multi Select": [{ "add": {"value": "Approval A is set"}}]
}
}
Like in below screenshot.
If you have smart value, you can pass that aswell like below..
{
"update": {
"Multi Select": [{ "add": {"value": "{{some_smartvalue}}"}}]
}
}
Reference:
Please try and share if issues. Hope it helps. Thanks!
Hello @Celina Kincaid
I think doing something like this with the Advanced JSON Editing option might work, but I haven't tested it.
replace customfield_12345 with your checkbox custom field.
{
"update": {
"customfield_12345": [{
"add": { "value": "option1" }
}]
}
}
I inferred this from the following documentation, looking at examples for setting a Checkbox field and for adding another value to a multiple selection field.
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.
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.