AGING

  • Thread starter Thread starter Phillip
  • Start date Start date
P

Phillip

just want know the formula in computing the age of an event by getting the
difference between a certain date to current date by not inputting the
current date. I'll use this in my work for monitoring the ages of ALARMS
until these are resolved.
 
Use DATEDIF()
A1 = Date

=DATEDIF(A1,TODAY(),"y") to return difference in years
=DATEDIF(A1,TODAY(),"m") to reutrn difference in months
=DATEDIF(A1,TODAY(),"d") to return the days

If this post helps click Yes
 
Or instead of =DATEDIF(A1,TODAY(),"d") you can use =TODAY()-A1
 

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