Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
| Telephone | With Characters |
| 32472643697026600 | No |
| 32031653599444 | No |
| 32352691563148 | No |
| 32473521808PRO | Yes |
| 32473335277INS | Yes |
| 324123431702577 | No |
| 3245674522INS | Yes |
Solved! Go to Solution.
Hi @Anonymous
Try this as a calcualted column in the table:
With Characters =
IF (
ISERROR ( VALUE ( 'Table'[Telephone] ) ),
"Yes",
"No"
)
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")
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!
Hi @Anonymous
Try this as a calcualted column in the table:
With Characters =
IF (
ISERROR ( VALUE ( 'Table'[Telephone] ) ),
"Yes",
"No"
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 92 | |
| 69 | |
| 50 | |
| 40 | |
| 38 |