Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
hobosapien
Helper I
Helper I

Special characters in column not appearing properly in Power Query editor - how to fix?

Below is a snapshot of the issue I am having in PBI. Some of the characters are not appearing correctly within a column of data and I'd like them to. Most of them are letters like é or ö but come up as question marks in the PQ editor. How can I get them to display properly?

 

hobosapien_0-1718063983024.png

 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

Check the text encoding type when you're importing your data. See https://learn.microsoft.com/en-us/powerquery-m/textencoding-type

For example, I have a data from a csv doccument, and I have a step called "import csv" where i can specify what type of encoding is used.

vicky__1-1718066162364.png

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thanks for the reply from @vicky_ , please allow me to provide another insight:

 

Hi @hobosapien ,

 

You can try below power query code to fix this problem:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCn6/f29SYnFJZmqeUqwOCl+hOCUNLBYAFMvNBhJAJbEA", BinaryEncoding.Base64), Compression.Deflate)), 
    let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ColumnName = _t]),
    ReplaceCharacters = (text as text) as text =>
    let
        replacedText = Text.Replace(text, "S�bastien", "Sébastien"),
        replacedText2 = Text.Replace(replacedText, "P�mk�n", "Pömkin")
    in
        replacedText2,
    AppliedReplacements = Table.TransformColumns(Source, {{"ColumnName", each ReplaceCharacters(_)}})
in
    AppliedReplacements

 

vkongfanfmsft_0-1718088543492.pngvkongfanfmsft_1-1718088554602.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

vicky_
Super User
Super User

Check the text encoding type when you're importing your data. See https://learn.microsoft.com/en-us/powerquery-m/textencoding-type

For example, I have a data from a csv doccument, and I have a step called "import csv" where i can specify what type of encoding is used.

vicky__1-1718066162364.png

 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors