Hi everyone,
--->I Have two tables - A and B
--->I use values from table B while filling a form and saving it in A.... i have a combobox with which i select the values and update the datacard using concat function separating with "-".
---> while trying to edit the same form in edit screen.... i have put a combobox and its defaultselecteditems property was set to [Parent.Default]....and successfully it is displaying all the items that were selected earlier and were saved....and i am also able to add new items to it.
---> my update function for the datacard in edit form again has concat(combobox.selectedItems,'Column_name' &"-")....
the problem is....after i submit the form , the values that were there earlier are not getting saved....only the recent addtitions are added to the table and earlier values are getting lost.