Hi All,
I have a Multi-Select Combo Box control which contains a list of records from a SharePoint list. The Combo Box displays the "Title" column:
-App 1
-App 2
-App 3
-App 4
I'm attempting to display a comma separated list of the selected items in a label control. With the formula below, the label is only displaying the last selection from the Combo Box.
Example: if I select "App 1", "App 3", and "App 4" from the Combo Box, the label displays:
"App 4,App 4,App 4"
I'm guessing I need to incorporate the ForAll function into the formula, but struggling with how to go about it. 😞
Concat(
cboPasaReqSubApp.SelectedItems,
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: cboPasaReqSubApp.Selected.ID,
Value: cboPasaReqSubApp.Selected.Title
}.Value,
","
)