
Announcements
Hello,
I created a form with Power Apps based on the fields of 2 Sharepoint lists. The "Categorie et Filiere" list and the "Filiere et Sous-Filiere" list.
I would like that when the user fills in the form, the data entered by the user is saved in another list called "Donnees Formulaire". But I don't know how to do this. 😞
Could you help me please? Thanks in advance !
Hi @s44 ,
Do you want to save data from a form to another SharePoint list?
You could try to use Patch() function to achieve this.
I have made a test for your reference.
1. Here are my lists.
2. Select the Icon and apply the following formula on its OnSelect property as:
Patch(datasource,Defaults(datasource),{ColumnName1:DataCardValue3.Text,ColumnName2:{Value:DataCardValue4.Selected.Value},ColumnName3:DataCardValue7.Text});SubmitForm(Form3);ResetForm(Form3)Result Screenshots:
Best Regards,
Charlie Choi