I have these two tables:

I created a power app using a combo box in my form as seen here:

I am able to retrieve all of my combo box items using this in “Items”
SortByColumns( ShowColumns('Projects.LitigationType', "Name", "ID"), "ID")
I am also able to save on a new record all of the selected items using this in “Update” in the datacard:
Concat(ComboBox1.SelectedItems, Name,",")
My problem is retrieving an existing record with the default selected text and re-saving the record. I have this as in the “defaultselectedtext”.
RenameColumns(Split(ThisItem.Litigation, ","), "Result", "Value")
Here is what happens when I create a new record:
- Start with blank database:

- Add new record:

- Display new record:

- Select existing record for editing:

- Add to existing list & save record:

- This is the result:

Can someone help me figure this out?