TimeFormat ( InTime ; InFormat )
Returns text version of time, InTime, in specified format, InFormat.
Be the first to rate this function Log in to vote
Richard DeShong - Show more from this author
Logic Tools http://logictools.com |
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
Given a time value, returns a text version of time in a specified format.
FM's time fields show the time in the format the user entered it;
This function makes sure that times are all displayed the same way.
Currently three formats are coded (include a default minimum style format):
TimeFormat( 13:25:00 ; "hh:mm:ss" ) returns: "13:25:00"
TimeFormat( 13:25:00 ; "hh:mm AMPM" ) returns: "1:25 PM"
TimeFormat( 13:25:00 ) returns: "1:25p"
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.