Hi
I hope you will be able to assist, I think it should be a easy fix but I cannot get my head around it.
I am using a gallery to save multiple entries into a collection which works correctly. The below pictures shows how the information is submitted with the instructions on the "+" button to patch that entry to the collection.



Once done with the entries I need to save all the entries to a separate collection through a Submit Button. All the entries are saving correctly however the surface_defects column only shows the last entries and not the previous entries.
How can I change my code to save Surface_defects column information from all the previous entries and not just show the last entry?

Herewith the code for the submit button:
ForAll(
Gal_Measures.AllItems,
Patch(
col_measuresoffline,
Defaults(col_measuresoffline),
{Title:TextCanvas1.Text,
start_rp: Value(txt_startRP.Text),
start_width: txt_startwidth.Text,
end_rp: txt_endRP.Text,
square_area: txt_SqArea.Text,
end_width: txt_endwidth.Text,
length: txt_length.Text,
surface_defects: Concat(Measure_Defects.SelectedItems,Value & ";")
}
)
);
Thanks in advance for the assistance