I am following this video of Shane Young to create repeating tables: https://youtu.be/xgznk4XlPCo
I am in that point where I was able to replicate the columns but added 3 more columns as this is an additional requirement. I am at this field where I'm doing the Patch function to save the data in my SharePoint list per column.
I put the Patch code on the OnSuccess function in the Form so that when the Form is submitted, my repeating table gets submitted as well and patched to my SharePoint column. Before I explain further, here is the list that I'm patching my repeating tables to:
http://uploads.technograffy.com/2K3F3o1R210u
As you can see, the columns are complete. On the OnSuccess field, this is my code:
ForAll(ExpenseCollection, Patch(ExpenseDB, Defaults(ExpenseDB), {Title: LineItem, Amount: LineCost, GLAcc: GLAccount, IOC: IOCode,Comments:Remarks, MasterID: Form2_1.LastSubmit.ID}))Basically, I am patching the data to each specific SharePoint column present on my list. However, this is the error I'm having:
http://uploads.technograffy.com/3t2t1P0a3Y3c
It says the column does not exist. However, when I enter only 3 columns, it accepts the formula:
http://uploads.technograffy.com/1w1P2a3Z433t
I am puzzled and I don't know what to do about this. I would be needing this asap and I can't wrap my head around this problem. 