This is a simple method for telling you the oldest and newest in inventory.
You can adapt it for your needs. I placed inventory in Col C. Column
containing calculated days item in inventory must be in ascending order.
Col A - Date item placed in inventory (hard date or formula such as
"=IF(ISBLANK(B3),"",TODAY())"
Col B - Item ID
Col C (formula, assuming starting in row 3, format 'General') - "=TODAY()-A3",
(Keep sorted in ascending order)
Col D (formula for finding oldest) - "=VLOOKUP(MAX(C3:C10),C3:C10,1,TRUE)"
Col E (formula for finding newest) - "=VLOOKUP(MIN(C3:C10),C3:C10,1,TRUE)"
This should put on the right track for more sophisticated tracking.
Ron