I have a flow gathering data via API and putting it into Dataverse. One field is a set of values related to that single record. In exploring solutions to this problem I created additional columns and have the value as a string in an array format in one column and just a string of comma separated values in another. I'm trying to massage the data at the source and am open to whatever other options on that end might do the trick.
These values will always be a group of items and I can't seem to split the results into individual options for the combobox/dropdown. Split doesn't work nor does setting the formula results as a variable. I've tried creating a collection of the values as well as converting the results to text so I can use Split but nothing has worked so far. Oh, and I'm pretty new to the Power Apps side of things. Power Automate is my jam but in this area I'm out of my depth.
I have the Items property set to
Distinct(
Filter(
'Field Details',
FieldName = cbField.Selected.Value
).FieldAllowedValuesList,
FieldAllowedValuesList
)
And it produces something like ["option1", "option2", "option3"] (the alternate column values look like "option1, option2, option3")
How can I split these results?
Thanks!