
Hello Power Apps Community,
Good day!
I would like to ask how I can pull the data from sharepoint with property text with concatenated value from a combo box.
Further explanation below:
- I have a combobox with item value with PDA Vendor this is a SP List. I'm getting the data from combo box and save it to sharepoint using code:
Vendor: Concat(VendorSelectionBox.SelectedItems.Title, Title, ",")
What i want is to pull the data from sharepoint when I'm on edit move and put it on the combobox.
How to achieve this? Thanks in advance.
Hello,
You can show the items with splitting by ","
So your DefaultSelectedItems formula of the combobox should be as below:
Split(ThisItem.Vendor,",")