Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In sense, Please help with converting a number to days and hours in
eg: 150480 = 17 days 1hr
Is the number in seconds? If it is, do you want the out to be 1 day and 17 hours? May be like this
Interval(Number/86400, 'D hh')
I need to display in the format like 17 d 1 hr
Hi,
This is really clunky but it works:
Replace(Replace(Interval(Interval#(150480,'s'),'DXhhZ'),'X',' d '),'Z', ' hr')
=
1 d 17 hr
stalwar1 - there must be a less ridiculous way to do this.
Regards
Andrew
That is probably the best way I can think of....
Hi effinty2112
How to get 1 d 17 hr 00 min 00 sec
Regards,
Sai Kiran