Hi,
I have a clone collection "OrderCollection" from "Menu" Data verse Table, with added column "Quantity"
ClearCollect(OrderCollection, 'Menu');
AddColumns(OrderCollection, "Quantity", 0);
I have a Gallery with "OrderCollection" DataSource, Quantity is visible in the Gallery.
I need to update the quantity once a button is pressed

I am using patch function
Patch(
OrderCollection,
LookUp(OrderCollection, ItemId = ThisItem.ItemId),
{
Quantity : ThisItem.Quantity + 1
}
)
But i get the below error message:

If i use any other field, it is working perfectly, please help me and let me know what i am missing here.