Returns a number representing the hour portion (0 to 23) of a specified time.
Hour ( time )
time
- any time value or field of type time
number
FileMaker Pro 6.0 or earlier
Hour ( "12:15:23" )
returns 12.
Hour ( CheckIn )
returns 3 when the value of CheckIn is 3:24.
Hour ( Duration ) + ( Minute ( Duration ) / 60 )
returns 2.5, when the Duration time field contains 2:30:15.
If ( Hour ( HoursWorked ) > 8 ; "Overtime Pay" ; " " )
returns Overtime Pay when the number of hours in HoursWorked is greater than 8.