Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
 

Storage of Time/Date Values

...

DateUnix Time Conversion
Jan 1,1970 00:00:011
Jan 1,2016 00:00:011451606401

Constants

A constant is an identifier whose associated value cannot typically be altered by the program during its execution.

ConstantComponent
msmilliseconds
sseconds
mminutes
hhours
ddays

These time constants can be used when building formulas and functions as well as when using filters in order to manipulate time/date data. 

Examples of time/date constants

  1. Functions
  2. Filters
  3. Formulas 

Anchor
function
function
Example of Date/Time constants within functions

*Today is October 10, 2012

Function(s)ResultFunction with constantResult
TODAY()Oct 10, 2012 12:00:00 AMTODAY()-5hOct 09, 2012 07:00:00 PM
TODAY()Oct 10, 2012 12:00:00 AMTODAY()+8h+5mOct 10, 2012 08:05:00 AM
TIMESTAMP()1,349,820,000,000TIMESTAMP()+2d1,349,992,800,000
TIMESTAMP()1,349,820,000,000TIMESTAMP()+45d+12h1,353,751,200,000

Anchor
filter
filter
Example of Date/Time constant within a filter

Original data:

  1. Apply a filter and choose Advanced.
  2. Type in the filter you want to apply including time constant if needed. For example, #UserDates!Time >= ASDATE("01-05-2012";"MM-dd-yyyy")+5d.
  3. View the data on the filtered sheet.

...

  1. Open a calculation workbook sheet and create your formula, for example: (#UserDates!Time) <= ASDATE("01-05-2012";"MM-dd-yyyy")+48h || (#UserDates!Time) >= ASDATE("01-20-2012";"MM-dd-yyyy")-48h.
  2. View the formula results.

Modifying Date/Time

Modify values with a data date type using the ADDTODATE function. This function allows for both adding and subtracting from dates and times and takes daylights savings time and leap years into account. 

...