Enumeration in drop-down

0
There are six drop-downs in my page.Each of them are using same enumeration.The functionality I want to achieve is when I select some value in the first drop-down the selected value of enumeration should not be populated in the drop downs below.How can I achieve this?
asked
2 answers
3

If you use the same enumeration in different attributes of your entity the selections will not be linked. So create 6 attributes of type enum and connect them to the same enum and add the 6 dropdowns on your form.

answered
0

I don't think you can. You could replace the enumeration with an entity. In the after startup you create the different values. Then create 6 associations between this new entity and the entity the enumeration was on for every dropdown. Then use a microflow to limit the entities a user can choose from based on the other associations.

answered