Hi all,
I have built a Powerapps survey off of a previous template. The app creates two different collections. One with the tool name "Tool", any comments "Comments", and the user's skill level "SkillLevel." My second collection takes the user's interest in different tool categories and lets them assign a rank-order for each one. The two columns in this collection are the tool name "LearnMoreTool" and the rank the user gave it "LearnMoreRanking."
I have created two SharePoint Lists with the respective column names. The Lists exactly match the columns aside from me not being able to remove the "Title" column that defaults as the first column. PowerApps recognizes the SharePoint and there are no formula issues when I create the data source connection with the SP Lists.
To write the data from the collection I am using two Collect() statements:
Collect('SPList1', 'Collection1')
Collect('SPList2', 'Collection2')
When I test the survey, the collect statements run but nothing is written to the SP List. I have ran this app using the Monitor and no errors arise. The command line tells me that the rows were successfully written to the SP List, but nothing actually populates. Has anybody ran into a similar issue? The Collect() statement should work because I am writing a collection into a SP List. I should not need to patch. I have followed the below video as a guide:
https://www.youtube.com/watch?v=MclJ_O9HvJQ
Thank you for your help.