Hi @Englishweb ,
How do you set the ShowSavedValue variable within your app?
Based on the issue that you mentioned, it means that -- when the ShowSavedValue equals true, it would retieve the saved Student1 value from your data source, otherwise, it would retrieve value from ComboBox selections.
If you want to load the saved Student1 value from your data source into the Label box, please make sure the ShowSavedValue is true when you loaded your app.
I have made a test on my side, please consider take a try with the following workaround:
Set the OnStart property of the App to following:
Set(ShowSavedValue, true)
Set the Text property of the Label to following:
If(
ShowSavedValue,
ThisItem.Student1,
Concat(Combobox1.SelectedItems, NAME& " " & FIRSTNAME, ",")
)
Please consider take a try with above solution, then re-load your app (fire the OnStart property of the App), then check if the issue is solved.
Best regards,