I have one numeric value (below) as time and description of the value is "in seconds since the epoch".
would I able to convert it into hh:mm:ss? - Thanks.
1510949673
Sounds like that’s a date time. Do you know what the date of 'epoch' is?
Try to apply the datetime format. If it shows a date and time you expect you can use TIMEPART to extract the relevant time portion.
Proc print data =have;
Format variable datetime.;
Time_portion = timepart(variable);
This might be a UNIX timestamp, in which case you need to add the difference between 01jan1960 and 01jan1970 to correctly display in SAS.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.