Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Guys,
I have an output in seconds. how to convert it into minutes.
Thanks
So convert 2400 seconds to 40 mins? Is this what you want to do?
Interval(Interval#(SecondsField, 's'), 'm') as Minutes
Will you provide possible values where we need to look
May be this
Interval(TimeField, 'h:mm:ss')
try this
floor(mod(TimeInSeconds,86400) /3600) as Hours,
here is an example of a value :48511346498
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')
What value do you expect to see once it is converted?
Expected hours?
Hi Wiem,
The example you give (48,511,346,498 seconds) is about 1538 years. When does your calendar start?
Cheers
Andrew