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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Aika
Contributor III
Contributor III

Filter values

Hi,

I have values, in a column date, like:

043689#PENLS_298610
000329#PEN_359677
000450#PEN_632580
096574#PENLS_156436
084405#PENLS_290274
...

I need to clean up the column date and get only the values that have "PENLS" inside:

043689#PENLS_298610
096574#PENLS_156436
084405#PENLS_290274
...

How can I do this using a Qlik function?
Who can help me in a short time?

Labels (1)
2 Replies
MayilVahanan
MVP
MVP

Hi

Try like below

If(wildmatch(columndatafield, '*Penls*),columndatafield, '') as columndatafield

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Aika
Contributor III
Contributor III
Author

Thank you, I try.