Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Srs.(as), Boa tarde!
Alguém pode me ajudar por gentileza?
Tenho um campo TotalSegundos (com o tempo todas em segundos) e preciso converter a duração para dias, horas e minutos.
TOTALSEGUNDOS =104880
RESULTADO = 1 dia, 5 horas e 8 minutos
Agradeço atenção!
=interval(TOTALSEGUNDOS /60/60/24,'DD hh:mm:ss')
May be this
=Replace(Replace(Replace(Interval(Interval#(104880, 'ss'), 'D @ h # m &'), '@', 'day/s'), '#', 'hours'), '&', 'minutes')
Use a função interval(expressão, 'd hh:mm:ss')
Try with
Time( A, 'dd-hh-mm' )
regards
=interval(TOTALSEGUNDOS /60/60/24,'DD hh:mm:ss')
usei assim:
=interval(timestamp#(sum(TEMPOACESSOSEGUNDOS), 's'), 'D hh:mm:ss')
Agradeço pela atenção!