I have an app where a multi-select listbox gets its choices from a lookup list in SharePoint. It should then store the selected values in a SharePoint text field in the main request list. Finally, it needs to be able to display the selected items in the list box when the form is opened for review.
I have the app saving all the selected values to the SharePoint text field using the formula below.
Concat(DeliveryMethodValue.SelectedItemsText.Value, Concatenate(Text(Value),", "))
However, it does not retrieve the values when the form is opened. The listbox shows no items as selected. I have no idea how to do this or if it's even possible.
Any ideas?
Thanks!