Returns the ordinal for the minute, ranging from 0 to 59.
See also DatePart, Hour, and Second.
Minute(date)
Any date.
Years from 0 to 29 are interpreted as 21st century values. Years 30 to 99 are interpreted as 20th century values.
When passing a date/time value as a string, make sure it is enclosed in quotes. Otherwise, it is interpreted as a number representation of a date/time object, returning undesired results.
<!--- This example shows the use of Hour, Minute, and Second ---> <HTML> <HEAD> <TITLE> Minute Example </TITLE> </HEAD> <BODY bgcolor=silver> <H3>Minute Example</H3> <CFOUTPUT> The time is currently #TimeFormat(Now())#. We are in hour #Hour(Now())#, Minute #Minute(Now())# and Second #Second(Now())# of the day. </CFOUTPUT> </BODY> </HTML>