Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 🙂