Hi everyone, apologies for the title as I am completely new to powerapps (ms teams).
I have a repeating section (table-like) gallery and the problem is when I add a new row coming to the 6th row, my details on the 1st row disappears/automatically clear. Please find below code on my new row button.
Collect(
GalleryPricingData,
{
SrNo:localSrNo,
Job_x0020_Category: "",
Entity_x0020_Type: "",
Job_x0020_Type: "",
Invoice_x0020_Description: "",
Min_x0020_Fee: Blank(),
Qty: Blank(),
Nominal_x0020_Value: Blank(),
Complexity_x0020_Value: Blank(),
Total: Blank(),
ClientID: ClientName_2.Selected.ID
}
);
Set(localSrNo,localSrNo+1);

