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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anish76
Frequent Visitor

Alphanumeric Values in column

How can I limit the column to only alphanumeric values?

1 ACCEPTED SOLUTION

Hi @Anish76 ,

 

If you can use Power Query, it will be easy. The idea is to add column to mark whether it contains characters other than numbers and letters.

Here's my sample data.

vstephenmsft_0-1673940291670.png

if [Value] = Text.Select ( [Value],{ "a".."z", "A".."Z", "0".."9" }) then 1 else 0

vstephenmsft_1-1673940515568.png

Then you can add this filter to write formulas in Power BI Desktop. For example,

Count rows which contains numeric, alpha, and alphanumeric values = COUNTROWS(FILTER('Table',[Contain numbers and letters]=1))

vstephenmsft_2-1673940711611.png

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-stephen-msft
Community Support
Community Support

Hi @Anish76 ,

 

What does limit mean, is it in a bunch of numbers mixed with English strings, only English letters remain?

If possible, please provide us with some sample data and expected results. And take care to protect your privacy.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for your response.
I want to search only alphanumeric values in the column, which contains numeric, alpha, and alphanumeric values.

Hi @Anish76 ,

 

If you can use Power Query, it will be easy. The idea is to add column to mark whether it contains characters other than numbers and letters.

Here's my sample data.

vstephenmsft_0-1673940291670.png

if [Value] = Text.Select ( [Value],{ "a".."z", "A".."Z", "0".."9" }) then 1 else 0

vstephenmsft_1-1673940515568.png

Then you can add this filter to write formulas in Power BI Desktop. For example,

Count rows which contains numeric, alpha, and alphanumeric values = COUNTROWS(FILTER('Table',[Contain numbers and letters]=1))

vstephenmsft_2-1673940711611.png

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Stephan,

 

The query only checks special characters and returns the value false. I have cells in my table that are only numeric, alphabetic, and alphanumeric with no special characters, and I want to have only alphanumeric values.

Anish76_1-1674024483078.png

 

 

Thank you Stephen, It worked.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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