With Power Query I managed to import the file as text, but once inside of PQ you can any transformation.
Formula:
let
Fonte = Csv.Document(File.Contents("D:\Users\DomingosJunqueira\Downloads\MC2.csv"),15,"",ExtraValues.Ignore,65001),
#"Alterar Tipo" = Table.TransformColumnTypes(Fonte,{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}, {"Column4", type text}, {"Column5", type text}, {"Column6", type text}, {"Column7", type text}, {"Column8", type text}, {"Column9", type text}, {"Column10", type text}, {"Column11", type text}, {"Column12", type text}, {"Column13", type text}, {"Column14", type text}, {"Column15", type text}}),
#"Colunas Removidas" = Table.RemoveColumns(#"Alterar Tipo",{"Column15"}),
#"Cabeçalhos Promovidos" = Table.PromoteHeaders(#"Colunas Removidas", [PromoteAllScalars=true])
in
#"Cabeçalhos Promovidos"
Bookmarks