How to add a multiselect dropdown to a form?

How do allow a form to have a multi-select drop down?

I can get a dropdown in a form using a relationship between “contamination categories” and “form” database but it only allows me to select one category instead of multiple.

The typical form only allows single select dropdown. You need to create a custom form if you want to use multiselect dropdown.

An easy way is to create the custom form is with two parts. The first part is the typical form that contains everything except the multiselect dropdown. Then you can add the multiselect component on the next screen. Just change the text on the typical form button to “Next”. Clicking “Next” will create a new record in the Form collection

You then Update the “Form” collection by adding or removing “contamination categories” with the Multiselect Dropdown. The relationship between Form & contamination categories is Many to Many. You can get the Multiselect Dropdown from Marketplace. It is Free

thanks so much that worked!!!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.