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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anish76
Frequent Visitor

Alphanumeric Values in column

How can I limit the column to only alphanumeric values?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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
Anonymous
Not applicable

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.

Anonymous
Not applicable

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.

amitchandak
Super User
Super User

@Anish76 , refer if old solutions can help

https://community.powerbi.com/t5/Desktop/Checking-a-column-for-alpha-and-alpha-numeric-characters/m-...

https://community.powerbi.com/t5/Power-Query/Data-type-issue-Alpha-numeric-column-is-loaded-data-typ...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.