Hello,
I am currently trying to make an 'Inventory App' for my company.
I use a SP List. I implemented an option to book a certain Item, but now I am looking for a way to kind of put the Item back into storage.
When booking an item I let the App create a new Entry with the same name and the desired amount, which gets substracted from the original one.
The 'back into storage' function so far looks like this:
Patch(
Inventar;
First(
Filter(
Inventar;
Title = InventarGalerie.Selected.Title && ID < InventarGalerie.Selected.ID
)
);
{Anzahl: + InventarGalerie.Selected.Anzahl}
)
For reference: Anzahl = Amount, Inventar = SP List, InventarGalerie = Galery that displays the list
The first part seems to work fine, but I have no idea how i can refer to the filter results in my formula.
I think i need something like {Anzahl: FilterResult + InventarGalerie.Selected.Anzahl} .
Any help will be apreciated.