More specifically and generally, I have:
Dropdown_Field_1 -> Dropdown_Selection
with name =
X -> Y-Z
and want to update
Dropdown_Field_2 with name = Y-X
to be equal to
Dropdown_Selection with name = Z
For example, I have a dropdown field of "Subsystem" that has option "SEQ - Barcode Scanner". I want to update a new dropdown field "SEQ - Subsystem" to have the option "Barcode Scanner" filled out. I also have "OT - Pipettor", etc. that need to be transferred to "OT - Subsystem" under "Pipettor", etc.
I would like an automated way of transferring options between these dropdown field, without having to manually make a rule for each option (50+ of them).
Hi @Makai Baker -- Welcome to the Atlassian Community!
First, a disclaimer: Although this is possible, the reliability depends on the alignment between your rule and the select-value fields contents.
Basically the rule would parse the target field name and value from the source issue data, and then use created variables and advanced edit with JSON to dynamically update the field. Here is the key part: because many of the field expressions with JSON use quotation marks, you will need to build up the JSON using created variables.
As you develop a rule like this, I recommend writing everything to the audit log to ensure it works as you expect during testing. You can remove the audit log writes later.
An outline of such a rule is below for an example for a text field. See the advanced edit with JSON documentation to do this for your field type, and its associated JSON.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.