Hi all.
I'm following Reza Dorrani's tutorial for creating editable/repeating tables here: Power Apps Editable Table/Gallery like Excel (Tutorial) - YouTube. For some reason, whenever I use the patch function with the add row button or delete row button, it will wipe the text already inputted into the table.
Here is my 'add row' button formula.
Patch('Customer Service Task PT. 2',Defaults('Customer Service Task PT. 2'),{Title:"",'Product Code':"",QTY:"",Price:""})
Here is my 'delete row' bin icon formula
Remove('Customer Service Task PT. 2',ThisItem)
Reza clearly shows that he is able to modify text, add and delete rows live while retaining the remaining text. I believe that it may be due to my data source (SP list) but honestly, I have no idea. Any ideas on what I'm doing wrong?
Please have a look at Image 1 and 2 to see what happens when I click the 'add row' button.