I mean that I import the file with encoding=wlatin1, but I still need to correct the values like : VAR&i.=tranwrd(VAR&i.,"é","é"); VAR&i.=tranwrd(VAR&i.,"ÃŽ","ô"); VAR&i.=tranwrd(VAR&i.,"ê","ê"); VAR&i.=tranwrd(VAR&i.,"ç","ç"); VAR&i.=tranwrd(VAR&i.,"â","â"); VAR&i.=tranwrd(VAR&i.,"â€","'"); VAR&i.=tranwrd(VAR&i.,"Ã","à"); Maybe, there is some function as in this example (it doesn't work in my case 😞 data gg; g="Général"; g1=PUT(g,$UTF8x2000.); g2=INPUT(g1,$UTF8x2000.); run; Obs g g1 g2 1 Général Général Général I mean that with a step like that I don't need to use a lot of tranwrd functions, but I still can't found a combination of formats for my case... Thank you very much!
... View more