
Hi, apologies for the title as I am completely new in powerapps (ms teams).
Problem: I have a new row button that basically adds a new row on my gallery and is saved in the collection when clicked (table-like). When it reaches a certain point (adding random rows), the gallery was clearing the data on the 1st row - for this instance, I added my 8th row then the data from the 1st row disappears upon scrolling all the way up. Was it a bug from powerapps (teams)? Thanks in advance.
Here's my code on 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);