Hi all!
New to appsheet and I am creating an inventory app where I want to sum my inventory by location. At the moment when you go to the item detail, it sums the total items I have in the 2 warehouses, but i want to see how many stock I have in each wharehouse.
I have this:
IF(Inventory[Location]=“Warehouse1”,
SUM(
SELECT(
Inventory[Amount],
([Item ID] = [_THISROW].[Item ID])
)
)
)
but it gives me Cannot compare List with Text in (Inventory[Location] = “Warehouse1”), anyone knows how i can filter by location please?
Thank you!