I have added the power apps form to a SharePoint page. When entering in the information on the form the data doesn't go to the SharePoint list any reason why ? I don't have any flows setup because I'm only asking for name , guest name , attending ? , and another felid text box.
Hi, how are you submitting the form? Is there a button that has an OnSelect property like SubmitForm(Form1)?
If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution. Thanks!
Hardit(Haman)
Hi @Rg4963 ,
Do you custom a form in your SP list using PowerApps or create a standalone canvas app?
Based on the screenshot that you provided, I suppose that you have customized a form in your SP list using PowerApps, is it true? Why not create a standalone canvas app based on your SP list, then embed this canvas app into your SP Site page?
Please make sure the Edit form you used to collect user's enter data is "FormNew" rather than "FormEdit". Also please consider move your Launch(...) formula from the OnSelect property of the "Submit" button to the OnSuccess property of the FormNew form.
Set the OnSelect property of the "Save" button to following:
SubmitForm(FormNew)
Set the OnSuccess property of the FormNew to following:
Refresh('Your SP List');
Launch("https://waste.../Pages/Home.aspx")
Please make sure the FormNew form is connected to your SP List. In other words, the DataSource property of the FormNew form has been connected to your SP List data source.
If the issue still exists, please consider generate an standalone canvas app based on your SP list, then embed the generated app into your SP Site page.
You could also consider create a Blank app, then add a Edit form in it, set the DefaultMode property of the Edit form to DisplayMode.Edit, connect the form to your SP List. Then add a "Save" button, set the OnSelect property to following:
SubmitForm(Form1)
Set the OnSuccess property of the FormNew to following:
Refresh('Your SP List');
ResetForm(Form1);
Launch("https://waste.../Pages/Home.aspx")
Please consider take a try with above solution, check if the issue is solved.
If you want to use Patch function to submit your form data, please consider take a try with the following formula within the OnSelect property of "Submit" button:
Patch(
'YourSPList',
Defaults('YourSPList'),
{
Title: TextInput1.Text,
'Guest Name': TextInput2.Text,
'Attending?': Radio1.Selected.Value,
...
}
);
ResetForm(FormNew);
Launch("https://..../Pages/Home.aspx")
Best regards,
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
204 | |
182 | |
71 | |
44 | |
35 |
User | Count |
---|---|
335 | |
267 | |
114 | |
69 | |
66 |