GetNumericdate()

Returns a real number whose integer part represents the number of days since the EPOCH (12 AM on 12-30-1899) and whose fractional part represents the time value expressed in hours then divided by 24

Usage

NUMERIC = GetNumericdate( date )
Argument Summary
date date

Calling

Supports named-parameter calling allowing you to use the function like:

GetNumericdate(
   date=?
);

Supports passing parameters as a structure using ArgumentCollection:

GetNumericdate( ArgumentCollection={
   date : ?
} );