date calculation

  • Thread starter Thread starter steveb1
  • Start date Start date
S

steveb1

I am using excel for a inventory list and need to track the number o
days an item has been in-stock. How can I create a formula to show m
the number of days from the date entered to today's current date
 
try
=today()-e8 formatted as a number
or datedif
=DATEDIF(E8,TODAY(),"d")
 
if your Date Entered was j5 then
=sum(now()- J5
or
=sum(Date-J5)
Now() = mm:dd:yy hh:mm:ss
Date = mm:dd:yy
 
if your Date Entered was j5 then
=sum(now()- J5
or
=sum(Date-J5)
Now() = mm:dd:yy hh:mm:ss
Date = mm:dd:yy

Entering "sum" is unnecessary.

=today()-Date_Entered


--ron
 

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