🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-15-2019 12:58 PM
(3180 views)
Hello
In the file attached, there is numeric value that I would like to convert into time in SAS. Please note that the time is to the milliseconds, hh:mm:ss:ms
thanks
1 ACCEPTED SOLUTION
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@cedre wrote:
Hello
In the file attached, there is numeric value that I would like to convert into time in SAS. Please note that the time is to the milliseconds, hh:mm:ss:ms
thanks
I think you need to provide some additional information.
For instance one of your example values is:
48600044
If that was collected as a number of milliseconds then dividing by 1000 would yield seconds. The result would be a duration in seconds, not an actual "time".
Maybe something along these lines:
data example; x=48600044; y=x/1000; format y time12.4; run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It works. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
slick answer!!!!!!Kudos!!!!!!!