I have a Power App with a "Price" text input that allows certain users to update prices that are kept in a Sharepoint List. Once a user scans or looks up an item, they can change the price of the item within the gallery and the new price is also patched to the Sharepoint List. My code is below, with the collection and SP list names changed for clarity:
Patch(collection,ThisItem,{Price: Value(Self.Text)}); Patch('Sharepoint Price List',LookUp('Sharepoint Price List',Title=Gallery1.Selected.BarcodeInfo),{ItemPrice: Value(Self.Text)})
This seems to have started with Power Apps release 3.22022.31. It was working well before then. I appreciate any ideas to get this working!