I want to correct the encoding for all members of a data library. proc datasets lib=orig; modify ae / correctencoding=wlatin1; /* or windows-1252 */ quit; I know I can use codegen to do this task. Is there a way this can be done using COPY perhaps? Modify _ALL_ does not work. 🙂