Hello all, I am trying to import a csv file containing a datetime filled this way: 01/06/2018 21:45 where 01 is the day, then 06 the month, 2018 the year, 21 the hour and 45 the minute. Unfortunately, by default SAS is using the ANYDTDTM16. informat which seems to be the US informat with the month filled before the day. To do so, I used the following code: PROC IMPORT DATAFILE="&Folder./&File" OUT=TempRH DBMS=CSV REPLACE;
DELIMITER=";";
INFORMAT Date_Heure datetime20.;
RUN; Does anyone know how to import this correctly? Thank you. Cédric
... View more