- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-24-2014 05:05 AM
(6966 views)
I have some raw data where a variable contain value in seconds now for largely time. format is good to have it in HH:MM:SS however there are some values which are large enough to make HH like 200 which when comes as report doesn't seems good so looking some way to have these large seconds to be converted to DAYS HOURS MINS ...thanks for throwing the ideas...
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
quick'n dirty:
days = int(seconds/86400);
time = mod(seconds,86400);
outvalue = put(days,2.)!!':'!!put(time,time8.);
if substr(outvalue,4,1) = ' ' then substr(outvalue,4,1) = '0';
edit: fixed some minor errors
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content