You are right the encoding option works. encoding in the infile statement should match the source(where the csv is prepared) encoding. target SAS environment has to be set to UTF8. wlatin1 is one of the encodings used by WIndows systems. example: infile "[[filepath]]\test.csv" encoding='wlatin1'
... View more