Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/*sample dataset*/
data unformatted;
input time code $3.;
datalines;
1300 ert
1412 brt
1435 grt
;
run;
data formatted;
set unformatted;
newtime = put(time,$4.);
format realtime hhmm5.;
realtime = hms(substr(newtime,1,2),substr(newtime,3,2),00);
run;