
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
seconds into Minutes
Hello Guys,
I have an output in seconds. how to convert it into minutes.
Thanks
- « Previous Replies
- Next Replies »
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
So convert 2400 seconds to 40 mins? Is this what you want to do?
Interval(Interval#(SecondsField, 's'), 'm') as Minutes


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Will you provide possible values where we need to look

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
Interval(TimeField, 'h:mm:ss')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this
floor(mod(TimeInSeconds,86400) /3600) as Hours,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
here is an example of a value :48511346498

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
IS it number or time object?
if number then you can
vTimeInSeconds = 3700
=Time(MakeTime(floor(vTimeInSeconds/3600),floor(mod(vTimeInSeconds,3600)/60),mod(mod(vTimeInSeconds,3600),60)),'hh:mm:ss')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What value do you expect to see once it is converted?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Expected hours?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Wiem,
The example you give (48,511,346,498 seconds) is about 1538 years. When does your calendar start?
Cheers
Andrew

- « Previous Replies
- Next Replies »