Hi guys,
i have a combobox that has a source another sharepoint list
ITEMS:
'Customer Visit - Access list'.Title
so far all good, once i save the choices to the list with a patch:
Patch('Customer Visit - Registration', LookUp('Customer Visit - Registration', Title = visitID_1.Text),
{ SharedWith: Concat(sharedwith.SelectedItems.Title, Title & ",") } )
i want to make it again visible for the user who opens this "case" again... but this wont work...
DefaultSelectedItems
ForAll(
Split(LookUp('Customer Visit - Registration', Title = visitID_1.Text).SharedWith, ","),
{
Value: Result
}
)
any idea how to build the default selected items?