Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
The column is populated with data that contains quite a few Unicode characters. The rows of interest to me are the ones where the characters are only in the range of a-z (upper or lower case) or 0-9. To me, the replace functionality was not enough as there are too many characters to replace.
I did find a potential solution using regular expressions & R in the post: http://radacad.com/power-bi-and-regular-expressions, however, I was hoping for an alternative that did not use R.
Pointers / Suggestions appreciated.
Regards,
Rajesh
Solved! Go to Solution.
Here is one way of doing it. The below code filters rows to only those where Text is equal to just the alphanumeric characters from Text.
This assumes the last step of the query is PreviousStep and the column of interest is named Text.
= Table.SelectRows( PreviousStep, each [Text] = Text.Select([Text],{"a".."z","A".."Z","0".."9"} ) )
Regards,
Owen
Here is one way of doing it. The below code filters rows to only those where Text is equal to just the alphanumeric characters from Text.
This assumes the last step of the query is PreviousStep and the column of interest is named Text.
= Table.SelectRows( PreviousStep, each [Text] = Text.Select([Text],{"a".."z","A".."Z","0".."9"} ) )
Regards,
Owen
Thank you!
Posted to unsolved new post
Could you provide more information regarding your requirement? Do you want identify if the column contains any invalid character, such as !@#?
Added more detail to original question.