Specifications

CHAPTER 24 DataWindow Expression and InfoMaker Functions
Users Guide 713
Minute
Description Obtains the number of minutes in the minutes portion of a time value.
Syntax Minute ( time )
Return value
Integer. Returns the minutes portion of time (00 to 59).
Examples This expression returns 1:
Minute(19:01:31)
See also Hour
Second
Mod
Description Obtains the remainder (modulus) of a division operation.
Syntax Mod ( x, y )
Return value
The datatype of x or y, whichever datatype is more precise.
Examples This expression returns 2:
Mod(20, 6)
This expression returns 1.5:
Mod(25.5, 4)
This expression returns 2.5:
Mod(25, 4.5)
Argument Description
time The time value from which you want the minutes
Argument Description
x The number you want to divide by y
y The number you want to divide into x