Hello Everybody To calculate Current Inventor...

Hello Everybody To calculate Current Inventory using virtual Column with this formula and it works fine

=SUM([tblPurchases][Quantity]) - SUM([tblSales][Quantity])

but now adding STATUS to the tblSales So need to calculate only the ones with status is โ€œSHIPPEDโ€ not โ€œREADYโ€,

What would be the formula? Thanks

0 3 327
3 REPLIES 3

Iโ€™m not sure it can be done using lists, unless you also define and instead use lists that include the additional selection criteria. For instance, define the columns tblPurchasesShipped and tblSalesShipped.

@Jason_F You can do that likeโ€ฆ

SUM([tblPurchases][Quantity]) - SUM(SELECT([tblSales][Quantity],[STATUS]=โ€œShippedโ€))

@Aleksi_Alkio Neat!!!

Top Labels in this Space