Hi,
I want to patch two sharepoint line from the same click of a button.
I have an inventory sharepoint list which some part are non paint and some need to be paint.
When we send part for painting, I'm able to patch quantity for 'Part_code'. I change the "inventory" and change the "inventorygonefor paint". The user need to specify the part that will be paint.
So, is it possible to do 2 patch line for the same sharepoint but for 2 differents line:
Patch(Inventory;First(Filter(Inventory; Part_code = "Part to be paint"
));{Partgonetobepaint: QtyAlreadyGone + NewQty});;
Patch(Inventory;First(Filter(Inventory; Part_code = "Part that will be paint"
));{Partgonetobepaint: QtyAlreadyGone + NewQty});;
The first Patch works well, but the second one doesn't do anything.
Thanks