
Not applicable
2016-04-14
02:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Convert seconds to time format
Hi,
I have calculated field in script as Second and now I want to convert it to time format.
for eg. 5326 to 01:28:46
7,228 Views
1 Solution
Accepted Solutions

MVP
2016-04-14
02:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8 Replies

MVP
2016-04-14
02:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hi,
try lik dis
Interval(TIME_SECONDS/86400, 'hh:mm:ss') as TIME_1 |

MVP
2016-04-14
02:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
6,517 Views

MVP
2016-04-14
02:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Champion
2016-04-14
02:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try,
Expression:
=Timestamp(FieldName/86400 ,'hh:mm:ss')
Script:
Timestamp(FieldName/86400 ,'hh:mm:ss') as Time

MVP
2016-04-14
02:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
or else
time(YourField/3600/24, 'hh:mm:ss') as YourFiled
Sample attached

Not applicable
2016-04-14
02:30 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
U can the time funcion
=time('field'/3600,'hh:mm')
6,517 Views

Master
2016-04-14
02:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
May be like this,
Data:
LOAD * ,
Time(Time#(Field,'ss'),'hh:mm:ss') as Time
INLINE [
Field
5326
];
Output:
In Text Box:
=Time(Time#(Field,'ss'),'hh:mm:ss')
HTH,
PFA,
Hirish
HirisH
“Aspire to Inspire before we Expire!”
“Aspire to Inspire before we Expire!”

Not applicable
2016-04-14
02:39 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try,
Expression:
=Timestamp(FieldName/86400 ,'hh:mm:ss')
Script:
Timestamp(FieldName/86400 ,'hh:mm:ss') as Time
6,516 Views
