Hi all,
I'm struggling to figure out how to populate a combo box with values that are stored in a table (currently Excel, but hopefully moving to a Dataverse table). The scenario is:
I have a 'New' screen that contains a combo box (in an Edit form) that allows the user to select multiple values from a list of items. That list of items is stored in an Excel table called 'Table6'. When the user selects values and hits 'Save', the selected values are concatenated (using ";") and stored in a table called 'Table1', in column called 'Services'. This all works fine.
The app also has an 'Edit' screen that contains a combo box (also in an Edit form). I would like this combo box to retrieve the stored values so that the user can readily see the Services that are already associated with this customer. The user s/b able to then select more (from the superset of items in 'Table6'), delete etc. Selections would then be saved back to the same location in 'Table1'.
The combo box in question has Items = Table1. Intuitively, I think I need to use DefaultSelectedItems. And I also believe that I need to use the Split function (possibly with other functions) to get the stored values in a form that can be used in the combo box. But I have been unsuccessful in getting this to work properly.
Do you have suggestions as to how I can accomplish this?
Thanks so much for any guidance...