Hello @v-xida-msft @Delid4ve
The items property of the ComboBox is an excel table: DRAFTALLSTUDENTSTABLE, so not a variable
The results of the combobox are sent to the text box:
If(ShowSavedValue, ThisItem.Student2, Concat(S2ComboConcat.SelectedItems, PRENOM & " " & NOM, ","))
The text box is is patched to an Excel datasource:
Patch(DRAFTSUMMARYDATATABLE,ThisItem,{Student2:S2StudentNameConcat.Text});UpdateContext({LetsEdit: false })
;Set(ShowSavedValue, true)
The text box is in collection: ClearCollect(CollectTutorInfoALLS2,{Student2:S2StudentNameConcat.Text})
The Combobox is in collection: ClearCollect(CollectComboS2,{NOM:S2ComboConcat.SelectedItems.NOM});
Does this help identify the problem?