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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
webportal
Impactful Individual
Impactful Individual

How to remove accents from a column using Power Query?

How to remove accents from a column using Power Query?

 

My column "descritivo" has a lot of accentuated characters, like: 

 

"Á"

"õ"

"Ù"

...

 

I want:

 

"A"

"o"

"u"

 

How to do this?

1 ACCEPTED SOLUTION
lkalawski
Resident Rockstar
Resident Rockstar

Hi @webportal ,

 

You can do this by using R in Power Query.

Please check this link: http://datacornering.com/how-to-convert-accented-characters-to-unaccented-in-r-or-power-bi/



_______________
If I helped, please accept the solution and give kudos! 😀

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Please try this:  https://stackoverflow.com/q/71969831/6165594

 

= (textToConvert) =>
let 
    textBinary = Text.ToBinary  (textToConvert,              1251 ),
    textASCII  = Text.FromBinary(textBinary   , TextEncoding.Ascii)
in    
    textASCII

 

DenisSipchenko_0-1650635522413.png

 

Simple, Quickly and Bealtiful...Congratulations

Very quick elegant solution, works for me, should be marked as the solution as well!

harshnathani
Community Champion
Community Champion

Hi @webportal ,

 

 

https://community.powerbi.com/t5/Desktop/Replacing-Letters-with-Accents/td-p/569615#:~:text=Re%3A%20...

 

http://datacornering.com/how-to-convert-accented-characters-to-unaccented-in-r-or-power-bi/

 

 

Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

 

HI @webportal ,

 

Check if this helps.

 

1.jpg

Anonymous
Not applicable

Sorry, a bit off topic...

But how did you attach .pbix file to post? 🤔
Here is the branch for this topic. 🙂

Fowmy
Super User
Super User

@webportal 

You can use replace value in power query to do it one at a time like

Fowmy_0-1598018598492.png
For more values, follow this video that shows how to do it for bulk replacement.
https://www.youtube.com/watch?v=MLrRlPh_ZFQ

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube, LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

lkalawski
Resident Rockstar
Resident Rockstar

Hi @webportal ,

 

You can do this by using R in Power Query.

Please check this link: http://datacornering.com/how-to-convert-accented-characters-to-unaccented-in-r-or-power-bi/



_______________
If I helped, please accept the solution and give kudos! 😀

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.