I have a form and a gallery whose data I would like submitted to a specific list. The data from the form is submitted successfully but I can't get around to having the data on the gallery submitted to the specific columns on the list.
Any help on this?
Hi @momureithi
There are some formula examples in this post that show how to patch the items in a gallery to a data source using the ForAll function.
https://powerusers.microsoft.com/t5/Building-Power-Apps/Patch-all-items-in-Gallery/td-p/66288
Maybe that might help. If not, if you could provide more details as to how your gallery and list is set up, that would help us provide more specific answer.
Hi @momureithi ,
Could you tell me which data source the gallery is connected to? A collection or other data sources?
For patching data to a SharePoint list, assume that:
1. Your Gallery is to display a collection, and the collection is reading data from your SP list.
2. You want to update the collection, and write the data back to your SP list.
You can refer to below formula as an example:
ForAll(
RenameColumns(Gallery1.AllItems,"ID","ID1"), /* Use RenameColumns() for disambiguation, you can also rename other columns here */
/* you can add an if()formula outside Patch() to filter some records to edit*/
Patch(
'SPList',
LookUp('SPList',ID=ID1), /* <-- Use the previously renamed column to find specific record */
{
ListColumnOne:GalleryFieldOne,
ListColumnTwo:GalleryFieldTwo,
...,
ListColumnN:GalleryFieldN
}
)
)
Note:
More details from following article:
If above formula still cannot solve your issue, please provide more information or screenshots. So that I can have a test in my environment.
Best Regards,
Allen
Hi @momureithi ,
How are things going? Have you solved your issue?
If my solution is helpful to you, please mark my answer. This will benefit other community members who stuck with the same question.
Best regards,
Allen
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
195 | |
67 | |
46 | |
41 | |
28 |
User | Count |
---|---|
254 | |
119 | |
86 | |
84 | |
83 |