Hello, Power Apps Community,
I have run out of gas. Not sure how to get this working. Every time I update a ComboBox value inside the gallery it reset the rest to 0

Items: colScores
ClearCollect(
colScores,
{Rating: "25%"},
{Rating: "50%"},
{Rating: "75%"}
);
Combox: DefaultSelectedItems:
ForAll(tblTCM_TOCResults,ThisItem.Score*100 & "%")
Patch forumla.
ForAll(
RenameColumns(
Gallery3.AllItems,
"ID",
"ID1"
),
Patch(
tblTCM_TOCResults,
LookUp(
tblTCM_TOCResults,
ID = ID1
),
{Y_x002f_N:RadioViewYesNoOtherNA.Selected.Answer},
{Comments:TextInput2.Text},
{Score:Value(ComboBox5.Selected.Rating)},
{CategoryScore:Value(Label4.Text)}
)
)
As always, thank you in advance.