Hello Smartsheet users,
I am attempting to create a sheet that will provide me with Weekly Usage totals of an inventory item so I can use the data to create better forecasts and projections. There might be a better way of doing this but as of right now my plan is as follows:
- Active Sheet contains all of the current totals of inventory item in question. This is updated live by the team that uses it so the totals decrease over the course of a week.
- Automation on Active Sheet will make a copy of the inventory items at the end of every week (Saturday) to a new sheet called EOW.
- Automation on Active sheet will make a copy of the inventory items at the beginning of every week (Sunday) to a new sheet called BOW
- On the BOW Sheet, create a column that will find the matching Lot ID and Week # from the EOW sheet and subtract the active inventory total in its row with that found on the EOW total. This value should be how much of the specific lot from a given week was used.
The problem I am running into is how to create the formula to subtract out the correct value. This is the current formula I have on the BOW sheet.
=IF(AND(HAS({Polish Lot - EOW}, [Polish Lot ID]@row), HAS({Week # - EOW}, [Week #]@row)), {Active Amount - EOW} - [Active Amount (nmol)]@row, "false")
Any help would be greatly appreciated!