I have a functional repeating section that saves the values to SharePoint list.

The issue is that I have to click '+' icon to populate the collection initially, otherwise - the collection is empty and nothing gets written to SharePoint when I click 'RPS_Test' button(submission to SharePoint). This will confuse the users. I am trying to avoid having to clicking the '+' to save the values in collection so that they can be pushed to SharePoint IF the values are populated.
Plus button has the following code:
Patch(
RepeatingSection,
ThisItem,
{
BottleSize123: BottleSizeMultiselect_2.Selected.Result,
UPCComboBox:UPCComboBox2.Selected.Result,
Other1:BottleSizeOtherRPTNEW.Text,
Other2:UPCOtherRPC.Text
}
);
Collect(
RepeatingSection,
{
BottleSize123: "",
Bottlesize2: "",
Other1: "",
Other2: ""
}
);
RPS test button has the following code:
ForAll(
RepeatingSection,
If(
!IsBlank(BottleSize123),
(Patch(
'Bottle Size UPS RS',
Defaults('Bottle Size UPS RS'),
{
Title: "test",
IDFK: 1,
BottleSize: BottleSize123,
BottleSizeOther: Other1,
UPCOther: Other2,
UPC: UPCComboBox
}
) )
)
)