Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
leobrand
Contributor III
Contributor III

Exclude alpha numeric strings

I have a table dimension that contains text and alpha-numeric strings. I want to create an expression that excludes the alpha-numeric strings  The syntax below excludes one alpha-numeric string but is obviously not enough to exclude them all.  Can you help?  


=If([Product Names]<>'XE94',[Product Names])

1 Solution

Accepted Solutions
PrashantSangle

USe findoneof()

try like

if(not findoneof(fieldName,'0123456789'),fieldName)

Regards,

Prashant Sangle

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

1 Reply
PrashantSangle

USe findoneof()

try like

if(not findoneof(fieldName,'0123456789'),fieldName)

Regards,

Prashant Sangle

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂