When I consider a model delivered in the procurement table I would like to press a button that add the units ordered to the inventory in the stock table
I created the following formula but nothing happens
Thank you for your help
Little extra: the button should be disabled once the units ordered have been added already
What about trying this (or the correctly spelled version of it using thisRow:
ModifyRows(Stock.Filter(name_model.Contains(thisRow.Model) and Site.Contains(thisRow.Site Delivery),Stock.Inventory,Sums(Stock.Inventory,thisRow.Units ordered)
On top, Contains() offers more insights and although " + " works, Iā d rather use Sum()