Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
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?
Solved! Go to Solution.
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)))
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.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.