CFLib.org – Common Function Library Project

timeRoundUpToNextSecond(datetime)

Last updated May 10, 2009

author

Alan McCollough

Version: 0 | Requires: CF5 | Library: DateLib

Description:
Correct for rounding error when working with datetimes brought into CF from Excel.

Return Values:
returns a string

Example:

timeFormat(39916.7083333,"hh:mm:ss") returns 04:59:59

timeFormat(timeRoundUpToNextSecond(39916.7083333),"hh:mm:ss") returns 05:00:00

Parameters:

Name Description Required
datetime datetime Yes

Full UDF Source:

/**
 * corrects rounding errors for times brought in from Excel
 * 
 * @param datetime      datetime (Required)
 * @return returns a string 
 * @author Alan McCollough (amccollough@anmc.org) 
 * @version 0, May 9, 2009 
 */
function timeRoundUpToNextSecond(datetime){
    // Declare our local variables
    var lDiff = 0;    
    
    // Correct for rounding error. If the milliseconds are something like .997,
    // I am asserting (assuming?) that the actual time is really the next second.
    // Why bother? I have Excel worksheets where the datetime is "4/13/09 17:00"
    // but when brought into CF via POI, it gets turned into "4/13/09 16:59:59"
    
    if(datePart("l", datetime) gte 997)
        {
        lDiff = 1000 - datePart("l", datetime);
        lDiff = lDiff / 1000;
        lDiff = lDiff + 1;
        datetime = dateAdd("s",lDiff,datetime); 
    };

    return datetime;
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson