Update field options based on previous selection
Update the options of a dropdown field based on what the user selects in the previous dropdown field.
Overview
Rule Logic
if (DropdownA.value === 'Positive') DropdownB.options = ['1', '2', '3'];
else DropdownB.options = ['-1', '-2', '-3'];Last updated
Was this helpful?