I've done some searching here and on StackExchange, but haven't been able to find a direct solution to my issue although I believe I have come close. I have a Document Library that I have created a form for to upload new files via a controlled/standardized questionnaire. The form gathers a single file plus information on the Client, Description of Document, and Category. The Category field in SharePoint is a Choice column, allowing for multiple selections of different category types to tag the document for indexing/searching.
On the form I have a ComboBox that pulls its values from a separate list in SharePoint that mirrors the values in the Category field. I want to take the values the user selects in this ComboBox and move them to the SharePoint list. Playing around with the code, I've been able to migrate a string such as "Option 1, Option 2" to SharePoint, but the values are not separate and thus not searchable on their own (i.e. will not come up if you do a filter on the column for Option 1). I have seen some "solutions" for similar problems that state I need to migrate the string to Power Automate and then within Power Automate, use the split function to create an array and have the Choice field populated with the array, but have not been able to get this work as of yet
Am I approaching this the right way? Is there a simpler method for doing this? Or is the split function the appropriate way to go? Does anyone have any clear resources for referencing in doing such a task? Thanks in advance!