Hi FLMike,
Yes, I do have scenario that i am trying to complete but looks like i am hitting a brick wall. I'm new to this but to give you this idea. Here is what i'm trying to build.
Task: Needed to create a 50 questionnaire that user will just select the multiple answer, user have ability to save and edit.
Backend: SharePoint list with choice columns
Challenges: User can select their answer selection in the initial questionnaire forms, BUT the problem is when they SAVED the form and then go back again to EDIT, i cannot show their selection on these same form with user previously selected checkbox. IF i add edit form.. the choices field becomes combobox and that's the problem. I'm trying to convert the edit from choice field (combobox) to a checkbox or radio selection but i am unable to do that. So i am resorting to other ways on how i can freely have a checkbox but when uncheck it will remove the selected values in the edit form combobox selecteditems list then save the form.
Initial entry View
This is what it looked like when the user initial open the form.

Here is the code above on the Oncheck
Collect(tempProgramDetailsQ7, chkSection3Q7a.Text);
Here is the code for uncheck
Remove( tempProgramDetailsQ7,
LookUp( tempProgramDetailsQ7, Value=chkSection3Q7a.Text ))
here is the code when the user selection is completed. there is a next button and here is the code
Patch(tblMain, LookUp(tblMain, Title = txtKeyLabel.Text),
//save the data in the table from collection
{
Sec3Q7: tempProgramDetailsQ7
});
//next question
Navigate(frmProgramDetailsQ8,ScreenTransition.Fade);
But when they saved the record and edit again and close the app, and change the answer the next day, i cannot show the same view above. so i was force to use this view below.
Edit View

What i really wanted is to show them same "Initial entry view" when editing and Adding. Hope this make sense.
Thank you so much for this.