Functions Reference

Table Of Contents
200 FileMaker Functions Reference
Minute
Format
Minute(time)
Parameter
time - any time value or field of type time
Data type returned
number
Description
Returns a number representing the number of minutes in time.
Examples
Minute(“12:15:23”) returns 15.
Hour(Duration) + (Minute(Duration)/60) returns 2.5, if the Duration time field
contains 2:30:15.
Seconds
Format
Seconds(time)
Parameter
time - any time value or field of type time
Data type returned
number
Description
Returns a number representing the number of seconds in time.
Examples
Seconds(“12:15:23”) returns 23.
Hour(Duration) + (Minute(Duration)/60) + (Seconds(Duration)/3600
returns 2.504166, if the Duration time field contains 2:30:15.