Good day, for the life of me I can't seem to figure this out. I have a Power BI report with a table that is connected to a power app so users can update the records they select in the report on the SQL table. I can get this to work for a single record perfectly fine, but when trying to update multiple with a ForAll using
ForAll([@PowerBIIntegration].Data, Patch(CSTargetList,LookUp(CSTargetList,CSTListId = Value(Label2.Text)), {ApprovalStatus:Dropdown1.SelectedText.Value, TargetListName:TargetListName, Serial:Serial}))
Only the first record of the Gallery is updated not all of the items. if I change the Value(Label2.Text) to Gallery.AllItems.Label2 I get a comparison error of Text to Table. So currently stuck.
Any help would be appreciated.
Thank you.