I am loading a csv file (UTF-8) with VBA QueryTable to excel. The Euro currency symbol is shown as Ôé¼ This is because the CSV file has no ANSI encoding and Excel cannot read non-English characters. I have used the code
worksheet.Columns("C").NumberFormat = "# €_)"
to change the currency for the column but it does not change the Ôé¼ from the csv file. It changes after I type a new number.. Is there an easy solution?
A sample of my CSV is:
"Project Name","Project Description","Project Budget"
"000 TEST","ABC Project Register","500000 €"
"001 TEST","DEF Project Register","400000 €"
"002 TEST","GHI Project Register","800000 €"