Hi @Shafeel_07,
Do you want to patch combo box select items to one field?
What is your data source?
And what the column type of Data_Integrity_Sytems_Id and Data_Integrity_Test_Case_Id?
Do you want to patch multiple items to multiple rows or to one field?
I think there is some wrong for your formula, If you want to Patch multiple combobox items,you should use,combobox.selectitems, combobox.seleted.id can only be one item.
I test with SP list as data source, I think you can try following workaround.
Method1:Number type of Data_Integrity_Systems_Id and multiple items to multiple rows.
Data Source:
2019PatchComboboxmutiple(my SP list name)
Data_Integrity_Test_Case_Id (Number type)
Data_Integrity_Systems_Id (Number type)
App Test:
ComboBox1.Items:'2019PatchComboboxmutiple'.Data_Integrity_Systems_Id
Button1.OnSelect: ClearCollect(comtest,ComboBox1.SelectedItems);ForAll(comtest,Patch('2019PatchComboboxmutiple',Defaults('2019PatchComboboxmutiple'),{Title:6,Data_Integrity_Test_Case_Id
:45,Data_Integrity_Systems_Id:comtest[@Data_Integrity_Systems_Id]}))
Result Test:
Method2:Single line type and multiple items to one field
Data Source:
2019PatchComboboxmutiple(my SP list name)
Data_Integrity_Test_Case_Id (Number type)
Data_Integrity_Systems_Id (Single line )
App Test:
ComboBox1.Items:'2019PatchComboboxmutiple'.Data_Integrity_Systems_Id
Button1.OnSelect: Patch('2019PatchComboboxmutiple',Defaults('2019PatchComboboxmutiple'),{Title:4,Data_Integrity_Test_Case_Id:45,Data_Integrity_Systems_Id
:Concat(ComboBox1.SelectedItems,Data_Integrity_Systems_Id&",")})
On your side :
Patch(‘source’,Defaults('source'),{Data_Integrity_Test_Case_Id:45,Data_Integrity_Systems_Id
:Concat(ComboBox1.SelectedItems,Data_Integrity_Systems_Id&",")})
Result Test:
Hope this can be helpful.
Best Regards.
Yumia