Hello!
So I have an app where users can choose from a list of names (formatted First Last) to give credit on a certain event. That list of names exists as a dataverse table, and the selected names are stored as text in a separate table. Later on, to allow the user to edit it through the dropdown, I need to populate the dropdown of users based on the text separated list. \
Sorry I know its kind of confusing, but basically, I need to transform a comma separated list (e.g. "John Smith, Joe Schmoe") and perform what I assume is a lookup function on a separate table to see what entries match those names (e.g. user_firstlast = John Smith and user_firstlast = Joe Schmoe) and then choose those as the default values of a multi-select combobox. Unfortunately, I have to store it as text, so I have to do it this way. Anything helps, thank you!