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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Anonymous
Not applicable

Is there a way to remove chinese texts in Power BI using Power Query or DAX?

Hi! I need to remove the chinese texts from the values of certain fields. Is there a way to do this in Power Query or DAX?

nicomathers_0-1691686794571.png

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use this in a custom column (or use this logic in Table.Replace). Replace [Text] with your column name.

Text.Select([Text], List.Transform({0..255}, (x)=>Character.FromNumber(x)))

 

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

Use this in a custom column (or use this logic in Table.Replace). Replace [Text] with your column name.

Text.Select([Text], List.Transform({0..255}, (x)=>Character.FromNumber(x)))

 

Anonymous
Not applicable

Worked like a charm! Thank you, Mate.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors