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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
nicomathers
Frequent Visitor

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)))

 

Worked like a charm! Thank you, Mate.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors