How to select a option in MultiChoice control automatically

Hi there,

I have a form like the following:

I want the Reviewed By Product Leader checkbox to be selected automatically when the Approval field is filled out.
How do I do this? Thank you

image

Dear @MartinM,
Multi-choice field value is set with an array, like this:

fd.field('Field1').value = ['Reviewed by Product Leader'];

1 Like