Concat(
'Char_CB_2'.SelectedItems,
Characteristics,
Char(10)
)
RenameColumns(
Split(
ThisItem.Characters,
","
),
Value,
Characteristics
)
Modify the DefaultSelectedItems
Property of the ComboBox Use the Split
function to convert the text stored in SharePoint into a table. Example formula for the DefaultSelectedItems
property
ForAll(
Split(ThisItem.Characters, Char(10)),
{Characteristics: Result}
)
combo box's Items
property is set to the same data source you are using to populate it initially. Choices(YourDataSource.Characters)
pls try. thanks