TimeMin
- Last UpdatedJul 18, 2023
- 1 minute read
Gets the minutes value from a time/date variable.
Note: Time/Date functions can only be used with dates between 1980 and 2035. You should
check that the date you are using is valid with Cicode similar to the following:
IF StrToDate(Arg1)>0 THEN
...
ELSE
...
END
Syntax
TimeMin(Time)
Time:
The time/date variable.
Return Value
The minute (as an integer).
Related Functions
Example
! If the current system time is 11:43:10 a.m.
MinutesVariable=TimeMin(TimeCurrent());
! Sets MinutesVariable to 43.