@DESCRIPTION=DATE2UNIX converts a spreadsheet date and time serial number into a unix time.
A unix time is the number of seconds since midnight January 1, 1970.
@EXAMPLES=
@SEEALSO=NOW, DATE, UNIX2DATE
@FUNCTION=DATEDIF
@SYNTAX=DATEDIF(date1,date2,interval)
@DESCRIPTION=DATEDIF returns the difference between two dates. @interval is one of six possible values: "y", "m", "d", "ym", "md", and "yd".
...
...
@@ -1626,6 +1636,15 @@ GESTEP(5,4) equals 1.
@SEEALSO=DELTA
@FUNCTION=GETENV
@SYNTAX=GETENV(string)
@DESCRIPTION=GETENV retrieves a value from the execution environment.
If the variable specified by @STRING does not exist, #N/A! will be returned. Note, that variable names are case sensitive.
@EXAMPLES=
@SEEALSO=
@FUNCTION=GETPIVOTDATA
@SYNTAX=GETPIVOTDATA(pivot_table,field_name)
@DESCRIPTION=GETPIVOTDATA function fetches summary data from a pivot table. @pivot_table is a cell range containing the pivot table. @field_name is the name of the field of which you want the summary data.
@DESCRIPTION=PERCENTRANK function returns the rank of a data point in a data set. @array is the range of numeric values, @x is the data point which you want to rank, and the optional @significance indentifies the number of significant digits for the returned value. If @significance is omitted, PERCENTRANK uses three digits.
If @array contains no data points, PERCENTRANK returns #NUM! error. If @significance is less than one, PERCENTRANK returns #NUM! error. If @x does not match any of the values in @array or @x matches more than once, PERCENTRANK interpolates the returned value.
@DESCRIPTION=PERCENTRANK function returns the rank of a data point in a data set. @array is the range of numeric values, @x is the data point which you want to rank, and the optional @significance indentifies the number of significant digits for the returned value, truncating the remainder. If @significance is omitted, PERCENTRANK uses three digits.
If @array contains no data points, PERCENTRANK returns #NUM! error.
If @significance is less than one, PERCENTRANK returns #NUM! error.
If @x exceeds the largest value or is less than the smallest value in @array, PERCENTRANK returns #NUM! error.
If @x does not match any of the values in @array or @x matches more than once, PERCENTRANK interpolates the returned value.