Hi everyone,
i have a virtual column that show the quantity of a product available.
below is the formula
SUM(SELECT(Inventory[Amount],([Item ID] = [_THISROW].[Item ID])))
is it possible to add another column from a different table
SUM(SELECT(Inventory[Amount],([Item ID] = [_THISROW].[Item ID]))+(AddStock[Amount],([Item ID] = [_THISROW].[Item ID])))
i tried the above formula but the amount added in AddStock will affect all other Item ID and not the specific Item ID that i want.