Hi Community,
I am very new to powerapps. I've been stuck on this basic inserting for the past 2 days now and i really need help. I wish to use Patch to insert my records. I am not using a form, it is various input fields which I will then retrieve the input and store. I look through a lot of posts and answers before this, making sure that the internal columns are the same, making sure to input the Title etc. There is no error shown, after submitting, it "works", but when i check the sharepoint list, it's empty no record(s) at all that was created. The process is wizard pages, ending with a summary page, and at the summary page there is a submit button. I am using text labels in the summary pages, i use those text displayed in those labels to insert in the list. Any help is greatly appreciated!!
This is what I put in the submit button. Even when i put e.g DisplayApplicationNumber.Text , no records is inserting
Set(
varTotalApplicationCounter,
CountRows(ApplicationList) + 1
);
Patch(
ApplicationList,
Defaults(ApplicationList),
{
Title: "ApplicationList",
ApplicationNumber: DisplayApplicationNumber,
TotalRLength: DisplayTotalRequestedLength,
CompanyLeasing: DisplayCompanyLeasing,
CBDType: DisplayCBDType,
Status: "Pending",
TotalLocations: CountRows(LocationCollection),
Remarks: DisplayRemarks,
ExtractionProration: false
}
);
I am also trying to insert a collection into the sharepoint list and similar to the above, it's not inserting even though there are no errors.
ForAll(
LocationCollection,
Patch (
LocationList,
Defaults(LocationList),
{
Title: "LocationList",
StartingPoint: DisplaySummaryStartingPoint,
EndingPoint: DisplayEndingPoint,
Total_SPipes: DisplaySummarySparePipes,
CBDType: DisplaySummaryCBDType,
Pipe_RLength: DisplaySummaryLength,
Status: "Pending"
}
)
);
This is the two sharepoint lists , left is ApplicationList and right is LocationList. I left almost all of it not required as I was still testing out how to insert.

This is how the summary page looks like


Thank you!!!