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

Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors