Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can i convert HH:MM:SS into Minutes or seconds
May be this
Interval(Interval#(FieldName, 'hh:mm:ss'), 'mm')
Interval(Interval#(FieldName, 'hh:mm:ss'), 'ss')
or
Interval#(FieldName, 'hh:mm:ss') * 24 * 60
Interval#(FieldName, 'hh:mm:ss') * 24 * 60 * 60
Hello,
Minute() & Second()
Eg: Minute(Now()), Second(Now())