i have a combobox in a forms from a sharepoint list and the users need to select multiple values, but i want these values to be converted into text values, but it seems that power apps register it as table/record values. how can i do this?

i have a combobox in a forms from a sharepoint list and the users need to select multiple values, but i want these values to be converted into text values, but it seems that power apps register it as table/record values. how can i do this?
Hi
Here is how:
I am setting a string variable = to Concat"ing" my multi-select combobox Choices, from a Mult-Select choice from SharePoint.
Set(choicesSingleTextLine,Concat(Choices.SelectedItems, Value & ","));
// or just return the string
Concat(Choices.SelectedItems, Value & ",")
Cheers
If you like my answer, please Mark it as Resolved, and give it a thumbs up, so it can help others
Thank You
Michael Gernaey MCT | MCSE | MCP | Self-Contractor| Ex-Microsoft
https://gernaeysoftware.com
LinkedIn: https://www.linkedin.com/in/michaelgernaey