My challenge is a peculiar one: I have a collection with a column of string values. I would like to convert each of the string values to choices, and combine all the choices into one multi-select choice.
Visual Example:
| ColOne | ColTwo |
| X | "ChoiceA" |
| Y | "ChoiceB" |
| Z | "ChoiceA" |
I would like to combine them and convert them into a single choice of ["ChoiceA", "ChoiceB"] that would go into another field. This is part of a larger command to do a multiple-select lookup on one field, and then auto-populate a choice field with the respect to the table above. In other words, if I select "X","Y" and "Z" for the lookup field, the choice field should have ["ChoiceA","ChoiceB"] as the selection.
I'm still new to PowerApps, and I apologize if I haven't explained this completely clearly and correctly.