I was happy to see that Unicode was implemented in Stata 14 (I am using Stata 14.0, Current update level 10 Jun 2015). However, I am experiencing problems using the import command. I have some Excel files that I want to import to Stata using the options firstrow and case(lower), i.e:
In some of these files the first row have Swedish special characters (ÅÄÖ), for example "ÅR" ("YEAR" in english) and "KÖN" ("GENDER" in english). Since I am using the case(lower) option, the variable name for "ÅR" should be "år" and "kön" for "KÖN", but this does not work -- Stata imports the variables as "År" and "kÖn". Hence, it seems that the lower case option for (at least Swedish) special characters does not work.
To me, this clearly seems like a bug, and if so, what is the best way to report it? It seems a bit weird to register as a Stata user since I am a grad student and am using the department license (whatever you may call it).
Code:
import excel "file.xlsx", firstrow case(lower) clear
To me, this clearly seems like a bug, and if so, what is the best way to report it? It seems a bit weird to register as a Stata user since I am a grad student and am using the department license (whatever you may call it).
Comment