TimeRound ( theTime ; incriment ; forceUpDn )
Rate this function: Average rating: 2.8 (6 votes) Discuss this Custom Function
Jonathan Mickelson, Thought Development Corp.
http://thought-dev.com
Rounds a time field by a time interval and allows optionally forcing the rounding up or down
Sample Input:
TimeRound ( "10:25:00" ; "00:10:00" ; "" )
TimeRound ( "10:24:59" ; "00:10:00" ; "" )
TimeRound ( "00:03:59" ; "00:01:00" ; -1 )
TimeRound ( "03:00:02" ; "01:00:00" ; 1 )
TimeRound ( "03:00:02" ; "01:00:00" ; "up" ) |
|
Sample Output:
10:30:00
10:20:00
00:03:00
04:00:00
04:00:00
|
|
Description:
Function: TimeRound ( theTime ; incriment ; forceUpDn )
Description: This function rounds a time field by a dynamic incriment
value, with the option to force it to round up or down, or
by default it uses normal rounding. Normal rounding defines
the breakpoint at 50% of the incriment value.
Output Format: a time value representing the rounded time.
See the following examples:
- TimeRound ( "10:25:00" ; "00:10:00" ; "" ) = "10:30:00"
- TimeRound ( "10:24:59" ; "00:10:00" ; "" ) = "10:20:00"
- TimeRound ( "00:03:59" ; "00:01:00" ; -1 ) = "00:03:00"
- TimeRound ( "03:00:02" ; "01:00:00" ; 1 ) = "04:00:00"
- TimeRound ( "03:00:02" ; "01:00:00" ; "up" ) = "04:00:00"
Parameters:
timeField - A time value to round.
incriment - A time value representing the interval to round by. A Null, "" or
0 value will use Normal rounding. A positive number will force
the rounding to round up to the next highest incriment, a negative
number will force the rounding to drop to the next lowest increment.
forceUpDn - A number value (or one of two thee values; up, dn or down )
representing desired rounding type to be used. A Null, "" or
0 value will use Normal rounding. A positive number, or "up", will
force the rounding up to the next highest incriment, a negative
number, or "dn" or "down", will force the rounding to drop to
the next lowest increment.
Author - Jonathan Mickelson, Thought Development Corp. (www.thought-dev.com)
Last Modified: 10/24/2006
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
Discuss:There are no comments yet. Be the first to post a comment about this Custom Function! Please try to keep it brief & to the point. Anyone can post:
|
Newest Custom Functions:
| 1. |
GetResultParameter( ParameterName ) |
| |
(Wed, Aug 25, 8:32am) |
| 2. |
GetListParameter ( ParameterList ; ParameterName ) |
| |
(Wed, Aug 25, 8:25am) |
| 3. |
Standard_Deviation( Field ; MaxLoopCount ; StartIndex ; StdDeviation ; ArithMeanValue ) |
| |
(Tue, Aug 24, 10:57am) |
| 4. |
Arithmetic_Mean ( Field ; MaxLoopCount ; StartIndex ; MeanValue ) |
| |
(Tue, Aug 24, 10:51am) |
| 5. |
Age ( Birth; theDate; Format ) |
| |
(Fri, Aug 20, 9:50am) |
| 6. |
Power ( x ; y ) |
| |
(Thu, Aug 19, 5:56am) |
| 7. |
portal.rowCount ( _name ) |
| |
(Sun, Aug 15, 2:41pm) |
| 8. |
PostPer_Day ( Post; startDate ; finishDate ; returnType ) |
| |
(Sat, Aug 14, 2:02pm) |
 |
|