TIME Function (VisioShapeSheet)
Returns the time represented by hour, minute, and second.
TIME(hour, minute, second)
Name | Required/Optional | Data Type | Description |
---|---|---|---|
hour |
Required |
Numeric |
The hour component. |
minute |
Required |
Numeric |
The minute comonent. |
second |
Required |
Numeric |
The second component. |
Numeric
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.