
Hola,
Tengo una lista desplegable, cuando selecciono me trae otros datos en diferentes campos; Necesito desactivar la opción que ya está registrada y con el estado 'Asignado', es decir, que no permita crear un registro con esa opción.
Gracias.
Hi @Dgelis25,
Thanks for posting.
Would you please translate your requirements in English?
In bing translate, your description is as below:
"
Engo a drop-down list, when I select brings me other data in different fields; I need to disable the option that is already registered and with the status ' assigned ', that is, not allow to create a record with that option.
"
Based on my understanding, you would like to disable the options that would have status ''assigned'', or registered.
For what I know, there is no option available to Disable options within Dropdown, but we could filter out the wanted option with the filter function.
For example, use the following code within the items property of the dropdown:
Filter(Table, not(Status='Assigned')).ItemName
Regards,
Michael