Hi @rohitsekar1996 ,
Have your issue been solved?
If not, let me make a conclusion:
Do you want to use combo box to update your multiple choice type field and display data by separator ","?
Could you tell me:
1) are you sure you use combo box or drop down? drop down does not have "selecteditems".
2)where does the combo box's Items come from? this choice field's choice?
3)what data type of this field? choice type field will not show "expecting Text".
4)the field's settings, the combo box's Items?
Please notice that: value in combo box could not display by separator ",".
1)If it is a text type, you could set the datacard's Update:
Concat(combo boxname.SelectedItems,fieldname&",")
2)If it is a multiple choice type, you could set the datacard's Update:
comboboxname.SelectedItems
//combo box will not display data by separator ",", you could insert a label to display data.
set the label's Text:
Concat(ThisItem.fieldname,Value&",")
Best regards,