Dear PowerApps Experts,
I have a problem with my shopping cart, because I want to update values when I select a monitor to pick it to the cart, I want to UPDATE QUANTITY value, if I select 1 monitor to the cart, QUANTITY should be substracted minus 1, for example from 19 to 18.

This is my items function from the Gallery - Qty is added from AddColumns function:
Filter(
AddColumns(
GroupBy(
Sprzęt;
Marka;
Model;
Cena;
Dostępne;
Description;
_byModel
);
Image;
Model; Qty; CountRows(_byModel)
);
ThisRecord.Dost_x0119_pne = true
)
So the question is: how can I update QUANTITY Text value from 19 to 18 when I pick item to the cart?