
Announcements
Dear All, i have following issue. I have a Form in PowerApps with the Field ImprovementR, the values are Stored in the SP List Improvements. I also have a Gallery with items from the SP List DataV , i added checkmarks to the Gallery items. I want to Update all the checked Gallery items column ImprovementR in the List DataV with the Value from the Form in the Field ImprovementR. So basically i want to Update all checked gallery items with the Value from the Form, i Hope you dont get confused with the Fact that ImprovementR is a Column in Both lists.
Hi @TMBI ,
I do not know the control type in the Form or the field type in the list, but try this structure
ForAll(
Filter(
GalleryName.AllItems,
CheckBoxName.Value
) As _Data,
Patch(
DataV,
{
ID: _Data.ID,
ImprovementR: YourImprovementRControlValue
}
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps