Inventory - First In First Out

  • Thread starter Thread starter tlcGRE
  • Start date Start date
T

tlcGRE

Is there a way to set up a spreadsheet that shows a running balance of an
item that has an expiration date? Each item has a shelf life of 5 years,
current year + 4.
Any help will be greatly appreciated.
 
so you want to see how many years or months or days are left?

i assume you have date added. Let's say it's in cell C1 for your first product

so

=DATE(YEAR(C1)+5,MONTH(C1),DAY(C1))-now() will give number of days. between
now and the 5 years are up.

otherwise, just divide by 30 to get months or 365 to get years.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top