Hey guys, I have a combobox with multiple choices (multiselect is on)
So for example.
on this combobox I have selected Cash and OTC

So clicking the submit button will check if Cash and OTC already exist on the Share Point If exist do nothing and if not it will create two new record one for Cash and one for OTC.
Sharepoint will look like the table below
| CID | Process | Selected |
| 123456 | Cash | Yes |
| 123456 | OTC | Yes |
if the user changed the combobox to select only Cash

Then clicking the submit button will update the status to Process Selected: No since the OTC is deselected.
Sharepoint will look like the table below
| CID | Process | Selected |
| 123456 | Cash | Yes |
| 123456 | OTC | No |
Will appreciate any help. Thank you thank you