Hi All.
I have an Excel file with time values, some of which exceed 24 hours (for example 113:55:00)
I am unable to import these values to SAS correctly (value is changed to 17:55:00)
I tried time20 informat. Any help would be appreciated. Thanks
SAS Code
libname a excel "&a.\new מתוקן חומר לסטטיסטיקאית 15.8.20.xlsx";
data fix;
set a."Sheet1$"N(dbsastype=(hours_from_admitance_to_surgery='TIME(20)'));
rename _____=Complaint ______________=ClinicalImp;
format hours_from_admitance_to_surgery time20.;
run;