Screen 1;
In combo box 1 I have Items = ["Apple", "Orange", "Pear", "Banana"]
OnChange = UpdateContext({SelectedFruit: ComboBox1.SelectedItems})
Selected values need to saved as comma separated text string:
button.OnChange = UpdateContext({Fruits:Concat(SelectedFruit,Value&",")})
Fruits are then saved to a SPO text column
Screen 2:
I have another combo box and a button
Combo box 2.Items = ["Apple", "Orange", "Pear", "Banana"]
I retrieve the value from the SPO column,
Retrieved value = "Pear,Banana,"
but first need to split it to convert to array
DefaultSelectedItems = ForAll(Split(Fruits,","),{Fruit:Result});
However, no values display.
Thanks in advance