FunctionCopy link to clipboard
timevalue( time_text )
Converts the given time into an equivalent interval.
ParametersCopy link to clipboard
Keyword | Type | Description |
---|---|---|
|
Text |
The time of day to be converted into an interval. |
ReturnsCopy link to clipboard
Time
ExamplesCopy link to clipboard
1
timevalue()
Copy
Returns 0::00:00:00.001
.
Use with timeCopy link to clipboard
1
timevalue(time(14,20,23))
Copy
Returns 2:20 PM
.
Use with date and timeCopy link to clipboard
1
timevalue(datetime(2011, 2, 28, 12, 0, 0))
Copy
Returns 12:00 PM
.
Use with integers, decimals, and listsCopy link to clipboard
1
timevalue(0)
Copy
Returns 12:00 AM
.
1
timevalue(9.9,8.098,{5,6})
Copy
Returns {9:36 PM, 2:21 AM, 12:00 AM, 12:00 AM}
.
1
timevalue(9.9,8.098,1234.2)
Copy
Returns {9:36 PM, 2:21 AM, 4:48 AM}
. timevalue({9.9,8.098,1234.2})
has the same result.
Use with textCopy link to clipboard
1
timevalue("4::12:12:12.013", "23:09")
Copy
Returns {12:18 AM, 11:09 PM}
.
Feature compatibilityCopy link to clipboard
The table below lists this function's compatibility with various features in Appian.
Feature | Compatibility | Note |
---|---|---|
Portals | Compatible | |
Offline Mobile | Compatible | |
Sync-Time Custom Record Fields | Compatible | Can be used to create a custom record field that only evaluates at sync time. |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Compatible | |
Process Events | Compatible |
FeedbackCopy link to clipboard
Was this page helpful?