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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Determine if there's a character in the field

Hello everyone,

 

Is there a function where it can check if a certain field contains characters?

I checked the CONTAINSSTRING but I don't want to define the text.

 

TelephoneWith Characters
32472643697026600No
32031653599444No
32352691563148No
32473521808PROYes
32473335277INSYes
324123431702577No
3245674522INSYes
2 ACCEPTED SOLUTIONS
MartynRamsden
Solution Sage
Solution Sage

Hi @Anonymous 

 

Try this as a calcualted column in the table:

 

With Characters =
IF (
    ISERROR ( VALUE ( 'Table'[Telephone] ) ),
    "Yes",
    "No"
)

 

View solution in original post

pbeye
Resolver II
Resolver II

Hi @Anonymous ,

 

Would checking if the string is a number work instead? I'm thinking it might work if you do the ISNUMBER formula, so something like this:

 

With Characters =IF(ISNUMBER(Telephone), "No", "Yes")

View solution in original post

3 REPLIES 3
pbeye
Resolver II
Resolver II

Hi @Anonymous ,

 

Would checking if the string is a number work instead? I'm thinking it might work if you do the ISNUMBER formula, so something like this:

 

With Characters =IF(ISNUMBER(Telephone), "No", "Yes")

This is cleaner than my suggested approach!

MartynRamsden
Solution Sage
Solution Sage

Hi @Anonymous 

 

Try this as a calcualted column in the table:

 

With Characters =
IF (
    ISERROR ( VALUE ( 'Table'[Telephone] ) ),
    "Yes",
    "No"
)

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors