This documentation is archived and is not being maintained.
TIME Function (VisioShapeSheet)
Last modified: March 09, 2015
Applies to: Office 2013 | Visio 2013
In this article
Syntax
Example 1
Example 2
Example 3
Returns the time represented by hour, minute, and second.
TIME(hour,minute,second)
Parameters
|
Name
|
Required/Optional
|
Data Type
|
Description
|
|
hour
|
Required
|
Numeric
|
The hour component.
|
|
minute
|
Required
|
Numeric
|
The minute comonent.
|
|
second
|
Required
|
Numeric
|
The second component.
|
Return Value
TIME(15,30,30)
Returns the value representing 15:30:30.
FORMAT(TIME(15,30,30),"HH:mm")
Returns the value representing 15:30.
TIME(15,30,30) + 8 eh.
Returns the value representing 23:30:30.